diff options
author | Marcus Brinkmann <[email protected]> | 2010-11-15 15:01:17 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2010-11-15 15:01:17 +0000 |
commit | 5164bd8678dba3c3f2173e976a51b9d16a04f5fa (patch) | |
tree | 152205c8afbf5ebd0b0819260e2b401080e3e504 /contrib/conf-w32ce-msc/stdint.h | |
parent | Fixes for the MSC build (diff) | |
download | gpgme-5164bd8678dba3c3f2173e976a51b9d16a04f5fa.tar.gz gpgme-5164bd8678dba3c3f2173e976a51b9d16a04f5fa.zip |
2010-11-15 Marcus Brinkmann <[email protected]>
* conf-w32ce-msc/stdint.h: New file.
* conf-w32ce-msc/build.mk (conf_sources): Add stdint.h.
* conf-w32ce-msc/build.mk (copy-static-source): Revert last change.
Diffstat (limited to '')
-rwxr-xr-x | contrib/conf-w32ce-msc/stdint.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/contrib/conf-w32ce-msc/stdint.h b/contrib/conf-w32ce-msc/stdint.h new file mode 100755 index 00000000..0a821b75 --- /dev/null +++ b/contrib/conf-w32ce-msc/stdint.h @@ -0,0 +1,9 @@ +typedef unsigned long long uint64_t; +typedef long long int64_t; +typedef unsigned int uint32_t; +typedef int int32_t; +typedef unsigned short uint16_t; +typedef short int16_t; +typedef unsigned int uintptr_t; +typedef int intptr_t; + |