MSLHAND.H 448 B

1234567891011121314151617181920212223242526272829
  1. #ifndef _included_mslhand_h_
  2. #define _included_mslhand_h_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. typedef enum MSL_Section
  7. {
  8. MSLS_COMPILEDIN,
  9. MSLS_CHARACTER,
  10. MSLS_ENVIRONMENT,
  11. MSLS_MAXSECTIONS
  12. } MSL_SECTION;
  13. #define MSL_OVERFLOW (-1)
  14. int GetNextMSLEntry(MSL_SECTION, unsigned int num_shapes, int auto_delete);
  15. void FlushMSLSection(MSL_SECTION);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /* !_included_mslhand_h_ */