Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
093909cf
Commit
093909cf
authored
May 24, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
May 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Reorder fields of __thread_data structure.
parent
2bcc9d45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
msvcrt.h
dlls/msvcrt/msvcrt.h
+13
-5
No files found.
dlls/msvcrt/msvcrt.h
View file @
093909cf
...
...
@@ -111,22 +111,30 @@ struct __thread_data {
HANDLE
handle
;
int
thread_errno
;
MSVCRT_ulong
thread_doserrno
;
int
unk1
;
unsigned
int
random_seed
;
/* seed for rand() */
char
*
strtok_next
;
/* next ptr for strtok() */
unsigned
char
*
mbstok_next
;
/* next ptr for mbstok() */
MSVCRT_wchar_t
*
wcstok_next
;
/* next ptr for wcstok() */
char
*
efcvt_buffer
;
/* buffer for ecvt/fcvt */
unsigned
char
*
mbstok_next
;
/* next ptr for mbstok() */
char
*
strerror_buffer
;
/* buffer for strerror */
MSVCRT_wchar_t
*
wcserror_buffer
;
/* buffer for wcserror */
void
*
unk2
[
4
];
char
*
asctime_buffer
;
/* buffer for asctime */
MSVCRT_wchar_t
*
wasctime_buffer
;
/* buffer for wasctime */
struct
MSVCRT_tm
time_buffer
;
/* buffer for localtime/gmtime */
char
*
strerror_buffer
;
/* buffer for strerror */
MSVCRT_wchar_t
*
wcserror_buffer
;
/* buffer for wcserror */
char
*
efcvt_buffer
;
/* buffer for ecvt/fcvt */
int
unk3
[
2
];
void
*
unk4
[
4
];
int
fpecode
;
struct
MSVCRT_localeinfo_struct
*
locale
;
int
unk5
[
2
];
MSVCRT_terminate_function
terminate_handler
;
MSVCRT_unexpected_function
unexpected_handler
;
MSVCRT__se_translator_function
se_translator
;
void
*
unk6
[
3
];
int
unk7
;
EXCEPTION_RECORD
*
exc_record
;
struct
MSVCRT_localeinfo_struct
*
locale
;
void
*
unk8
[
100
]
;
};
typedef
struct
__thread_data
thread_data_t
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment