Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
873 B

  1. /*
  2. File: CFArray.h
  3. Contains: CoreFoundation array collection
  4. Version: QuickTime 7.3
  5. Copyright: (c) 2007 (c) 1999-2001 by Apple Computer, Inc., all rights reserved
  6. Bugs?: For bug reports, consult the following page on
  7. the World Wide Web:
  8. http://developer.apple.com/bugreporter/
  9. */
  10. #if PRAGMA_IMPORT
  11. #pragma import on
  12. #endif
  13. #if PRAGMA_STRUCT_ALIGN
  14. #pragma options align=mac68k
  15. #elif PRAGMA_STRUCT_PACKPUSH
  16. #pragma pack(push, 2)
  17. #elif PRAGMA_STRUCT_PACK
  18. #pragma pack(2)
  19. #endif
  20. #include <CoreFoundation/CFArray.h>
  21. #if PRAGMA_STRUCT_ALIGN
  22. #pragma options align=reset
  23. #elif PRAGMA_STRUCT_PACKPUSH
  24. #pragma pack(pop)
  25. #elif PRAGMA_STRUCT_PACK
  26. #pragma pack()
  27. #endif
  28. #ifdef PRAGMA_IMPORT_OFF
  29. #pragma import off
  30. #elif PRAGMA_IMPORT
  31. #pragma import reset
  32. #endif