Advertisement
Guest User

Untitled

a guest
Apr 11th, 2012
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. // Data models
  2. // Data Type LP32 ILP32 SILP64 ILP64 LLP64 LP64
  3. // char 8 8 8 8 8 8
  4. // short 16 16 64 16 16 16
  5. // int 16 32 64 64 32 32
  6. // long 32 32 64 64 32 64
  7. // long long (int64) 64 64 64 64 64 64
  8. // pointer 32 32 64 64 64 64
  9.  
  10. // __int8 8 8 8 8 8 8
  11. // __int16 16 16 16 16 16 16
  12. // __int32 32 32 32 32 32 32
  13. // __int64 64 64 64 64 64 64
  14.  
  15.  
  16. /*
  17. MacOS (Apple Mac) 32 - LP32
  18. LLP64 - for 32 bit application on 64 bit os
  19. OS Mode
  20. Windows XP-64 / IA64 LLP64
  21. Linux LP64
  22. Solaris LP64
  23. DEC OSF/1 Alpha LP64
  24. SGI Irix LP64
  25. HP UX 11 LP64
  26. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement