limits.h 215 B

1234567891011121314
  1. // ugly arbitrary limits
  2. #ifndef LIMITS_H_
  3. #define LIMITS_H_
  4. #define MAX_OPEN_PCH 48
  5. /* each entry will consume 8 bytes */
  6. #define MAX_CATALOG_ENTRIES 3000
  7. #ifdef PC
  8. #define MAX_PCHDATA_SIZE 20000
  9. #endif
  10. #endif