Changeset 3560 for trunk/include/win
- Timestamp:
- May 19, 2000, 2:08:37 PM (25 years ago)
- Location:
- trunk/include/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/crtdll.h
r2632 r3560 1 /* $Id: crtdll.h,v 1. 5 2000-02-03 23:31:41sandervl Exp $ */1 /* $Id: crtdll.h,v 1.6 2000-05-19 12:08:35 sandervl Exp $ */ 2 2 3 3 … … 27 27 28 28 /* syserr defines */ 29 c har __syserr00[] = "No Error";30 c har __syserr01[] = "Input to function out of range (EDOM)";31 c har __syserr02[] = "Output of function out of range (ERANGE)";32 c har __syserr03[] = "Argument list too long (E2BIG)";33 c har __syserr04[] = "Permission denied (EACCES)";34 c har __syserr05[] = "Resource temporarily unavailable (EAGAIN)";35 c har __syserr06[] = "Bad file descriptor (EBADF)";36 c har __syserr07[] = "Resource busy (EBUSY)";37 c har __syserr08[] = "No child processes (ECHILD)";38 c har __syserr09[] = "Resource deadlock avoided (EDEADLK)";39 c har __syserr10[] = "File exists (EEXIST)";40 c har __syserr11[] = "Bad address (EFAULT)";41 c har __syserr12[] = "File too large (EFBIG)";42 c har __syserr13[] = "Interrupted system call (EINTR)";43 c har __syserr14[] = "Invalid argument (EINVAL)";44 c har __syserr15[] = "Input or output error (EIO)";45 c har __syserr16[] = "Is a directory (EISDIR)";46 c har __syserr17[] = "Too many open files (EMFILE)";47 c har __syserr18[] = "Too many links (EMLINK)";48 c har __syserr19[] = "File name too long (ENAMETOOLONG)";49 c har __syserr20[] = "Too many open files in system (ENFILE)";50 c har __syserr21[] = "No such device (ENODEV)";51 c har __syserr22[] = "No such file or directory (ENOENT)";52 c har __syserr23[] = "Unable to execute file (ENOEXEC)";53 c har __syserr24[] = "No locks available (ENOLCK)";54 c har __syserr25[] = "Not enough memory (ENOMEM)";55 c har __syserr26[] = "No space left on drive (ENOSPC)";56 c har __syserr27[] = "Function not implemented (ENOSYS)";57 c har __syserr28[] = "Not a directory (ENOTDIR)";58 c har __syserr29[] = "Directory not empty (ENOTEMPTY)";59 c har __syserr30[] = "Inappropriate I/O control operation (ENOTTY)";60 c har __syserr31[] = "No such device or address (ENXIO)";61 c har __syserr32[] = "Operation not permitted (EPERM)";62 c har __syserr33[] = "Broken pipe (EPIPE)";63 c har __syserr34[] = "Read-only file system (EROFS)";64 c har __syserr35[] = "Invalid seek (ESPIPE)";65 c har __syserr36[] = "No such process (ESRCH)";66 c har __syserr37[] = "Improper link (EXDEV)";67 c har __syserr38[] = "No more files (ENMFILE)";29 const char __syserr00[] = "No Error"; 30 const char __syserr01[] = "Input to function out of range (EDOM)"; 31 const char __syserr02[] = "Output of function out of range (ERANGE)"; 32 const char __syserr03[] = "Argument list too long (E2BIG)"; 33 const char __syserr04[] = "Permission denied (EACCES)"; 34 const char __syserr05[] = "Resource temporarily unavailable (EAGAIN)"; 35 const char __syserr06[] = "Bad file descriptor (EBADF)"; 36 const char __syserr07[] = "Resource busy (EBUSY)"; 37 const char __syserr08[] = "No child processes (ECHILD)"; 38 const char __syserr09[] = "Resource deadlock avoided (EDEADLK)"; 39 const char __syserr10[] = "File exists (EEXIST)"; 40 const char __syserr11[] = "Bad address (EFAULT)"; 41 const char __syserr12[] = "File too large (EFBIG)"; 42 const char __syserr13[] = "Interrupted system call (EINTR)"; 43 const char __syserr14[] = "Invalid argument (EINVAL)"; 44 const char __syserr15[] = "Input or output error (EIO)"; 45 const char __syserr16[] = "Is a directory (EISDIR)"; 46 const char __syserr17[] = "Too many open files (EMFILE)"; 47 const char __syserr18[] = "Too many links (EMLINK)"; 48 const char __syserr19[] = "File name too long (ENAMETOOLONG)"; 49 const char __syserr20[] = "Too many open files in system (ENFILE)"; 50 const char __syserr21[] = "No such device (ENODEV)"; 51 const char __syserr22[] = "No such file or directory (ENOENT)"; 52 const char __syserr23[] = "Unable to execute file (ENOEXEC)"; 53 const char __syserr24[] = "No locks available (ENOLCK)"; 54 const char __syserr25[] = "Not enough memory (ENOMEM)"; 55 const char __syserr26[] = "No space left on drive (ENOSPC)"; 56 const char __syserr27[] = "Function not implemented (ENOSYS)"; 57 const char __syserr28[] = "Not a directory (ENOTDIR)"; 58 const char __syserr29[] = "Directory not empty (ENOTEMPTY)"; 59 const char __syserr30[] = "Inappropriate I/O control operation (ENOTTY)"; 60 const char __syserr31[] = "No such device or address (ENXIO)"; 61 const char __syserr32[] = "Operation not permitted (EPERM)"; 62 const char __syserr33[] = "Broken pipe (EPIPE)"; 63 const char __syserr34[] = "Read-only file system (EROFS)"; 64 const char __syserr35[] = "Invalid seek (ESPIPE)"; 65 const char __syserr36[] = "No such process (ESRCH)"; 66 const char __syserr37[] = "Improper link (EXDEV)"; 67 const char __syserr38[] = "No more files (ENMFILE)"; 68 68 69 69 /* function prototypes used in crtdll.c */ -
trunk/include/win/winversion.h
r4 r3560 1 /* $Id: winversion.h,v 1. 1 1999-05-24 20:19:23 ktkExp $ */1 /* $Id: winversion.h,v 1.2 2000-05-19 12:08:37 sandervl Exp $ */ 2 2 3 3 #ifndef __WINE_WINVERSION_H … … 13 13 } WINDOWS_VERSION; 14 14 15 extern WINDOWS_VERSION VERSION_GetVersion(void); 16 extern char *VERSION_GetVersionName(void); 17 extern BOOL VERSION_OsIsUnicode(void); 15 #ifdef __cplusplus 16 extern "C" { 17 #endif 18 19 WINDOWS_VERSION VERSION_GetVersion(void); 20 char *VERSION_GetVersionName(void); 21 BOOL VERSION_OsIsUnicode(void); 22 23 #ifdef __cplusplus 24 } 25 #endif 18 26 19 27 #endif /* __WINE_WINVERSION_H */
Note:
See TracChangeset
for help on using the changeset viewer.