/Modules/_ctypes/libffi_arm_wince/ffitarget.h

http://unladen-swallow.googlecode.com/ · C++ Header · 49 lines · 16 code · 8 blank · 25 comment · 0 complexity · b9ac7ff4a7e518303ca47acbdcb3d3ad MD5 · raw file

  1. /* -----------------------------------------------------------------*-C-*-
  2. ffitarget.h - Copyright (c) 1996-2003 Red Hat, Inc.
  3. Target configuration macros for ARM.
  4. Permission is hereby granted, free of charge, to any person obtaining
  5. a copy of this software and associated documentation files (the
  6. ``Software''), to deal in the Software without restriction, including
  7. without limitation the rights to use, copy, modify, merge, publish,
  8. distribute, sublicense, and/or sell copies of the Software, and to
  9. permit persons to whom the Software is furnished to do so, subject to
  10. the following conditions:
  11. The above copyright notice and this permission notice shall be included
  12. in all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
  14. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  15. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  16. IN NO EVENT SHALL CYGNUS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  17. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  18. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  19. OTHER DEALINGS IN THE SOFTWARE.
  20. ----------------------------------------------------------------------- */
  21. #ifndef LIBFFI_TARGET_H
  22. #define LIBFFI_TARGET_H
  23. #ifndef LIBFFI_ASM
  24. typedef unsigned long ffi_arg;
  25. typedef signed long ffi_sarg;
  26. typedef enum ffi_abi {
  27. FFI_FIRST_ABI = 0,
  28. FFI_SYSV,
  29. FFI_DEFAULT_ABI = FFI_SYSV,
  30. FFI_LAST_ABI = FFI_DEFAULT_ABI + 1
  31. } ffi_abi;
  32. #endif
  33. /* ---- Definitions for closures ----------------------------------------- */
  34. #define FFI_CLOSURES 1
  35. #define FFI_TRAMPOLINE_SIZE 12
  36. #define FFI_NATIVE_RAW_API 0
  37. #endif