libcm is a C development framework with an emphasis on audio signal processing applications.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

cmFileSysOsx.h 462B

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