diff options
author | Sven Gothel <[email protected]> | 2014-01-25 15:03:04 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-01-25 15:03:04 +0100 |
commit | f51d6456ab2196bf8ce7d6b3c7ac6d71e9e0108b (patch) | |
tree | 27f793cb02a09b4735b5b379dc9ae18e8df43ee5 /make/resources/stubs_includes/common | |
parent | 1bc4f882be2c8129521b1110e52bcda9c232f8f1 (diff) | |
parent | 9ecc606bce374ea093c6321f2d4921b5019a0b18 (diff) |
Merge remote-tracking branch 'wwalker/bug_884_replace_netbeans_build_with_jogamp_standard_build'
Diffstat (limited to 'make/resources/stubs_includes/common')
-rw-r--r-- | make/resources/stubs_includes/common/stddef.h | 24 | ||||
-rw-r--r-- | make/resources/stubs_includes/common/stdint.h | 48 |
2 files changed, 72 insertions, 0 deletions
diff --git a/make/resources/stubs_includes/common/stddef.h b/make/resources/stubs_includes/common/stddef.h new file mode 100644 index 00000000..f6c7207b --- /dev/null +++ b/make/resources/stubs_includes/common/stddef.h @@ -0,0 +1,24 @@ +#ifndef __stddef_h_ +#define __stddef_h_ + + /** + * Look in the GlueGen.java API documentation for the build-in types (terminal symbols) + * definition. + * + * The following types are build-in: + * + * __int32 + * int32_t + * uint32_t + * __int64 + * int64_t + * uint64_t + * ptrdiff_t + * size_t + */ + + #define NULL ((void *)0) + + typedef int wchar_t; + +#endif /* __stddef_h_ */ diff --git a/make/resources/stubs_includes/common/stdint.h b/make/resources/stubs_includes/common/stdint.h new file mode 100644 index 00000000..4e456608 --- /dev/null +++ b/make/resources/stubs_includes/common/stdint.h @@ -0,0 +1,48 @@ +#ifndef __stdint_h_ +#define __stdint_h_ + + /** + * Look in the GlueGen.java API documentation for the build-in types (terminal symbols) + * definition. + * + * The following types are build-in: + * + * __int32 + * int32_t + * uint32_t + * __int64 + * int64_t + * uint64_t + * ptrdiff_t + * size_t + */ + + typedef signed char int8_t; + typedef unsigned short int16_t; + + typedef unsigned char uint8_t; + typedef unsigned short uint16_t; + + typedef ptrdiff_t intptr_t; + typedef size_t uintptr_t; + + /* Greatest-width integer types */ + /* Modern GCCs provide __INTMAX_TYPE__ */ + #if defined(__INTMAX_TYPE__) + typedef __INTMAX_TYPE__ intmax_t; + #elif __have_longlong64 + typedef signed long long intmax_t; + #else + typedef int64_t intmax_t; + #endif + + /* Modern GCCs provide __UINTMAX_TYPE__ */ + #if defined(__UINTMAX_TYPE__) + typedef __UINTMAX_TYPE__ uintmax_t; + #elif __have_longlong64 + typedef unsigned long long uintmax_t; + #else + typedef uint64_t uintmax_t; + #endif + +#endif /* __stdint_h_ */ |