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.

cmFileSysOsx.h 315B

12345678910111213141516
  1. #ifndef cmFileSysOsx_h
  2. #define cmFileSysOsx_h
  3. typedef struct
  4. {
  5. cmErr_t* err;
  6. cmLHeapH_t lhH;
  7. cmChar_t* prefDir;
  8. cmChar_t* rsrcDir;
  9. cmChar_t* userDir;
  10. } _cmFsOsx_t;
  11. cmFsRC_t _cmOsxFileSysInit( _cmFsOsx_t** pp, cmLHeapH_t lhH, cmErr_t* err );
  12. cmFsRC_t _cmOsxFileSysFinalize( _cmFsOsx_t* p );
  13. #endif