mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 22:50:38 +03:00
phobos 0.99
This commit is contained in:
parent
f86a362105
commit
5b1e376698
10 changed files with 332 additions and 15 deletions
|
@ -110,7 +110,6 @@ extern (C)
|
|||
int lseek(int, int, int);
|
||||
int fstat(int, struct_stat*);
|
||||
int stat(char*, struct_stat*);
|
||||
int getErrno();
|
||||
int chdir(char*);
|
||||
int mkdir(char*, int);
|
||||
int rmdir(char*);
|
||||
|
|
|
@ -36,3 +36,6 @@ enum
|
|||
int random(int num);
|
||||
void randomize();
|
||||
|
||||
int getErrno();
|
||||
int setErrno(int);
|
||||
|
||||
|
|
|
@ -263,6 +263,7 @@ enum
|
|||
}
|
||||
|
||||
const HANDLE INVALID_HANDLE_VALUE = cast(HANDLE)-1;
|
||||
const DWORD INVALID_SET_FILE_POINTER = cast(DWORD)-1;
|
||||
const DWORD INVALID_FILE_SIZE = cast(DWORD)0xFFFFFFFF;
|
||||
|
||||
struct OVERLAPPED {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue