module.h 228 B

123456789101112
  1. #ifndef __MODULE_H__
  2. #define __MODULE_H__
  3. #if defined(__cplusplus)
  4. # define INTERNAL 64
  5. #elif !defined(__cplusplus)
  6. # define INTERNAL 32
  7. #else
  8. # error "Unable to determine INTERNAL symbol."
  9. #endif
  10. #endif /* __MODULE_H__ */