diff options
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 4 | ||||
-rw-r--r-- | winsup/cygwin/include/sys/cygwin.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index 7d60b9b46..904b7c97c 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -72,6 +72,7 @@ details. */ (CYGWIN_VERSION_DLL_MAKE_COMBINED (user_data->api_major, user_data->api_minor) <= \ CYGWIN_VERSION_DLL_OLD_TERMIOS) +#define CYGWIN_VERSION_DLL_MALLOC_ENV 28 /* Old APIs had getc/putc macros that conflict with new CR/LF handling in the stdio buffers */ #define CYGWIN_VERSION_OLD_STDIO_CRLF_HANDLING \ @@ -119,10 +120,11 @@ details. */ 27: CW_GETPINFO_FULL addition to external.cc 28: Accidentally bumped by cgf 29: Export hstrerror + 30: CW_GET_CYGDRIVE_INFO addition to external.cc */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 29 +#define CYGWIN_VERSION_API_MINOR 30 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible diff --git a/winsup/cygwin/include/sys/cygwin.h b/winsup/cygwin/include/sys/cygwin.h index b04ecc742..2b3370cfa 100644 --- a/winsup/cygwin/include/sys/cygwin.h +++ b/winsup/cygwin/include/sys/cygwin.h @@ -58,7 +58,8 @@ typedef enum CW_PERFILE, CW_GET_CYGDRIVE_PREFIXES, CW_GETPINFO_FULL, - CW_INIT_EXCEPTIONS + CW_INIT_EXCEPTIONS, + CW_GET_CYGDRIVE_INFO } cygwin_getinfo_types; #define CW_NEXTPID 0x80000000 // or with pid to get next one |