libcm is a C development framework with an emphasis on audio signal processing applications.
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.

cmTextTemplate.h 477B

12345678910111213141516171819202122232425
  1. #ifndef cmTextTemplate_h
  2. #define cmTextTemplate_h
  3. enum
  4. {
  5. kOkTtRC = cmOkRC,
  6. kFileFailTtRC,
  7. kLHeapFailTtRC,
  8. kSyntaxErrTtRC
  9. };
  10. typedef cmHandle_t cmTtH_t;
  11. typedef unsigned cmTtRC_t;
  12. extern cmTtH_t cmTtNullHandle;
  13. cmTtRC_t cmTextTemplateInitialize( cmCtx_t* ctx, cmTtH_t* hp, const cmChar_t* fn );
  14. cmTtRC_t cmTextTemplateFinalize( cmTtH_t* hp );
  15. bool cmTextTemplateIsValid( cmTtH_t h );
  16. cmTtRC_t cmTextTemplateTest( cmCtx_t* ctx, const cmChar_t* fn );
  17. #endif