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.

123456789101112131415161718
  1. //| Copyright: (C) 2009-2020 Kevin Larke <contact AT larke DOT org>
  2. //| License: GNU GPL version 3.0 or above. See the accompanying LICENSE file.
  3. #ifndef cmFileSysOsx_h
  4. #define cmFileSysOsx_h
  5. typedef struct
  6. {
  7. cmErr_t* err;
  8. cmLHeapH_t lhH;
  9. cmChar_t* prefDir;
  10. cmChar_t* rsrcDir;
  11. cmChar_t* userDir;
  12. } _cmFsOsx_t;
  13. cmFsRC_t _cmOsxFileSysInit( _cmFsOsx_t** pp, cmLHeapH_t lhH, cmErr_t* err );
  14. cmFsRC_t _cmOsxFileSysFinalize( _cmFsOsx_t* p );
  15. #endif