summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-15 13:45:16 +0100
committerSven Gothel <[email protected]>2010-11-15 13:45:16 +0100
commit5b22420bbade343ac1a7976264f977dcd4fe5e24 (patch)
tree3b0954c09495885d310d1c04c7522f8ee993247e
parenta8ab404afc50630329220f4049e1d11d284e0a82 (diff)
API Doc: Complete list of predefined types
-rw-r--r--src/java/com/jogamp/gluegen/package.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/java/com/jogamp/gluegen/package.html b/src/java/com/jogamp/gluegen/package.html
index 68f4eb9..891a6dd 100644
--- a/src/java/com/jogamp/gluegen/package.html
+++ b/src/java/com/jogamp/gluegen/package.html
@@ -11,6 +11,13 @@
<br>
<table border="1">
<tr><th>type</th> <th>java</th> <th>native-x32</th><th>native-x64</th><th>type</th> <th>signed</th> <th>origin</th</tr>
+ <tr><th>void</th> <th> 0bit</th><th> 0bit</th> <th> 0bit</th> <th>void</th><th>void</th> <th>ANSI-C</th></tr>
+ <tr><th>char</th> <th> 8bit</th><th> 8bit</th> <th> 8bit</th> <th>integer</th><th>signed or unsigned</th><th>ANSI-C</th></tr>
+ <tr><th>short</th> <th>16bit</th><th>16bit</th> <th>16bit</th> <th>integer</th><th>signed or unsigned</th><th>ANSI-C</th></tr>
+ <tr><th>int</th> <th>32bit</th><th>32bit</th> <th>32bit</th> <th>integer</th><th>signed or unsigned</th><th>ANSI-C</th></tr>
+ <tr><th>long</th> <th>64bit</th><th>64bit</th> <th>64bit</th> <th>integer</th><th>signed or unsigned</th><th>ANSI-C</th></tr>
+ <tr><th>float</th> <th>32bit</th><th>32bit</th> <th>32bit</th> <th>float</th> <th>signed</th> <th>ANSI-C</th></tr>
+ <tr><th>double</th> <th>64bit</th><th>64bit</th> <th>64bit</th> <th>double</th> <th>signed</th> <th>ANSI-C</th></tr>
<tr><th>__int32</th> <th>32bit</th><th>32bit</th> <th>32bit</th> <th>integer</th><th>signed or unsigned</th><th>windows</th></tr>
<tr><th>int32_t</th> <th>32bit</th><th>32bit</th> <th>32bit</th> <th>integer</th><th>signed</th> <th>stdint.h</th></tr>
<tr><th>wchar_t</th> <th>32bit</th><th>32bit</th> <th>32bit</th> <th>integer</th><th>signed</th> <th>stddef.h</th></tr>