diff options
author | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2009-12-16 17:25:43 +0000 |
---|---|---|
committer | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2009-12-16 17:25:43 +0000 |
commit | 63debae4c1020fa1e0ccd92ef3cbfdc8735acf8e (patch) | |
tree | 6cf89738aab0e498c3e3184f9658d227d0c8ad85 /include/config | |
parent | 200645d50ec212a6dec305bac0b75f67e175cdf4 (diff) |
initial checkin for visualstudio build support
git-svn-id: http://skia.googlecode.com/svn/trunk@460 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/config')
-rw-r--r-- | include/config/sk_stdint.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/config/sk_stdint.h b/include/config/sk_stdint.h new file mode 100644 index 0000000000..9a5f5ca877 --- /dev/null +++ b/include/config/sk_stdint.h @@ -0,0 +1,13 @@ +#ifndef sk_stdint_DEFINED
+#define sk_stdint_DEFINED
+
+typedef signed char int8_t;
+typedef unsigned char uint8_t;
+typedef short int16_t;
+typedef unsigned short uint16_t;
+typedef int int32_t;
+typedef unsigned uint32_t;
+typedef long long int64_t;
+typedef unsigned long long uint64_t;
+
+#endif
|