diff options
author | Camil Staps | 2015-07-06 15:31:13 +0200 |
---|---|---|
committer | Camil Staps | 2015-07-06 15:31:13 +0200 |
commit | a63390fb65054e3fa272c06e874e8dc1f5984bdf (patch) | |
tree | 9dc1ac75a69b6e0ee3c8821e04c4b1f0132dd2df /Linux_C_12/util_121.h | |
parent | Library malloc fix (diff) |
Casting warnings
Diffstat (limited to 'Linux_C_12/util_121.h')
-rw-r--r-- | Linux_C_12/util_121.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Linux_C_12/util_121.h b/Linux_C_12/util_121.h index 69e47ca..8bdcf76 100644 --- a/Linux_C_12/util_121.h +++ b/Linux_C_12/util_121.h @@ -39,13 +39,13 @@ typedef void* HGLOBAL; typedef unsigned long DWORD;
typedef struct
-{ int mess;
- int p1;
- int p2;
- int p3;
- int p4;
- int p5;
- int p6;
+{ int64_t mess;
+ int64_t p1;
+ int64_t p2;
+ int64_t p3;
+ int64_t p4;
+ int64_t p5;
+ int64_t p6;
} CrossCallInfo;
typedef struct clean_string
|