Commit 4755f8ac authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Added EILSEQ definition.

parent 1b69f035
......@@ -437,6 +437,7 @@ struct MSVCRT__stati64 {
#define MSVCRT_ENOLCK 39
#define MSVCRT_ENOSYS 40
#define MSVCRT_ENOTEMPTY 41
#define MSVCRT_EILSEQ 42
#define MSVCRT_LC_ALL 0
#define MSVCRT_LC_COLLATE 1
......
......@@ -355,6 +355,7 @@ static void test_defines(void)
CHECK_DEF(ENOLCK);
CHECK_DEF(ENOSYS);
CHECK_DEF(ENOTEMPTY);
CHECK_DEF(EILSEQ);
CHECK_DEF(LC_ALL);
CHECK_DEF(LC_COLLATE);
CHECK_DEF(LC_CTYPE);
......
......@@ -60,6 +60,7 @@
# define ENOLCK 39
# define ENOSYS 40
# define ENOTEMPTY 41
# define EILSEQ 42
#ifdef __cplusplus
extern "C" {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment