cppGlobals.h 488 B

1234567891011121314151617181920
  1. // Filename: cppGlobals.h
  2. // Created by: drose (16May00)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. #ifndef CPPGLOBALS_H
  6. #define CPPGLOBALS_H
  7. #include <dtoolbase.h>
  8. // Some compilers (notably VC++) define a special keyword to represent
  9. // a 64-bit integer, but don't recognize "long long int". To parse
  10. // (and generate) code for these compilers, set this string to the
  11. // 64-bit integer typename keyword.
  12. extern string cpp_longlong_keyword;
  13. #endif