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.

43 lines
785 B

  1. /*
  2. File: CFDate.h
  3. Contains: CoreFoundation date
  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. #ifndef __CFDATE__
  11. #define __CFDATE__
  12. #if PRAGMA_ONCE
  13. #pragma once
  14. #endif
  15. #if PRAGMA_IMPORT
  16. #pragma import on
  17. #endif
  18. #include <CFBase.h>
  19. typedef double CFTimeInterval;
  20. typedef CFTimeInterval CFAbsoluteTime;
  21. typedef const struct __CFDate* CFDateRef;
  22. #ifdef PRAGMA_IMPORT_OFF
  23. #pragma import off
  24. #elif PRAGMA_IMPORT
  25. #pragma import reset
  26. #endif
  27. #endif /* __CFDATE__ */