aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad/common
diff options
context:
space:
mode:
authorted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2013-03-06 14:06:52 +0000
committerted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2013-03-06 14:06:52 +0000
commit93a48343eecb9a38c023b1e5d4fecb44c4655cb2 (patch)
tree07c06432efb916c67b974dc13252ee3418934967 /src/google_breakpad/common
parentUse stdint types everywhere (diff)
downloadbreakpad-93a48343eecb9a38c023b1e5d4fecb44c4655cb2.tar.xz
Fix some more Win32 compat issues in processor code
R=mark at https://breakpad.appspot.com/535003/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1122 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/google_breakpad/common')
-rw-r--r--src/google_breakpad/common/breakpad_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/google_breakpad/common/breakpad_types.h b/src/google_breakpad/common/breakpad_types.h
index a6545be5..a60c5f35 100644
--- a/src/google_breakpad/common/breakpad_types.h
+++ b/src/google_breakpad/common/breakpad_types.h
@@ -62,6 +62,7 @@
typedef unsigned __int8 uint8_t;
typedef unsigned __int16 uint16_t;
+typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;
#endif