msvcrt: Use correct integral types in structs.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-02-03 11:50:12 +01:00 committed by Alexandre Julliard
parent fe1aebb600
commit d7dad50544
6 changed files with 9 additions and 9 deletions

View file

@ -266,7 +266,7 @@ typedef enum {
typedef struct _iosarray {
struct _iosarray *next;
int index;
int long_val;
LONG long_val;
void *ptr_val;
} IOS_BASE_iosarray;

View file

@ -954,7 +954,7 @@ int __cdecl __uncaught_exceptions(void)
typedef struct
{
EXCEPTION_RECORD *rec;
int *ref; /* not binary compatible with native */
LONG *ref; /* not binary compatible with native */
} exception_ptr;
/*********************************************************************

View file

@ -379,7 +379,7 @@ typedef enum {
typedef struct _iosarray {
struct _iosarray *next;
int index;
int long_val;
LONG long_val;
void *ptr_val;
} IOS_BASE_iosarray;

View file

@ -169,7 +169,7 @@ typedef struct cs_queue
{
struct cs_queue *next;
#if _MSVCR_VER >= 110
BOOL free;
LONG free;
int unknown;
#endif
} cs_queue;
@ -249,7 +249,7 @@ typedef struct thread_wait_entry
typedef struct thread_wait
{
void *signaled;
int pending_waits;
LONG pending_waits;
thread_wait_entry entries[1];
} thread_wait;
@ -263,7 +263,7 @@ typedef struct
#if _MSVCR_VER >= 110
typedef struct cv_queue {
struct cv_queue *next;
BOOL expired;
LONG expired;
} cv_queue;
typedef struct {

View file

@ -1134,7 +1134,7 @@ const char * __thiscall type_info_name_internal_method(type_info * _this, struct
typedef struct
{
EXCEPTION_RECORD *rec;
int *ref; /* not binary compatible with native msvcr100 */
LONG *ref; /* not binary compatible with native msvcr100 */
} exception_ptr;
#if _MSVCR_VER >= 100

View file

@ -66,7 +66,7 @@ typedef struct __lc_time_data {
LCID lcid;
#endif
int unk;
int refcount;
LONG refcount;
#if _MSVCR_VER == 0 || _MSVCR_VER >= 100
union {
const wchar_t *wstr[43];
@ -90,7 +90,7 @@ typedef struct __lc_time_data {
} __lc_time_data;
typedef struct threadmbcinfostruct {
int refcount;
LONG refcount;
int mbcodepage;
int ismbcodepage;
int mblcid;