mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-11 13:26:08 +03:00
Fix type of char parameters for Windows call. (already fixed upstream)
This commit is contained in:
parent
209b6fc2b0
commit
05963f04a1
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ version (Windows) extern (C) int mkdir(const char*);
|
|||
version (Windows) alias _mkdir = mkdir;
|
||||
version (Posix) extern (C) char* canonicalize_file_name(const char*);
|
||||
version (Windows) extern (C) int stricmp(const char*, const char*);
|
||||
version (Windows) extern (Windows) DWORD GetFullPathNameA(LPCTSTR lpFileName, DWORD nBufferLength, LPTSTR lpBuffer, LPTSTR* lpFilePart);
|
||||
version (Windows) extern (Windows) DWORD GetFullPathNameA(LPCSTR lpFileName, DWORD nBufferLength, LPSTR lpBuffer, LPSTR* lpFilePart);
|
||||
|
||||
alias Strings = Array!(const(char)*);
|
||||
alias Files = Array!(File*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue