Advertisement
Kitomas

_kit_kmixerPrivate.h as of 8-18-23

Aug 18th, 2023
862
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.36 KB | None | 0 0
  1. #ifndef _KIT_KMIXERPRIVATE_H
  2. #define _KIT_KMIXERPRIVATE_H
  3.  
  4. struct _kit_kmixerGlobals_t {
  5.   SDL_mutex* lock;
  6.   //(might want to have this on a voice-by-voice basis)
  7.   //int useLinearInterpolation; //(boolean) otherwise, use nearest neighbor
  8.   int threadPoolSize, cores,capabilities;
  9.   int init;
  10. };
  11. extern struct _kit_kmixerGlobals_t _kit_kmixerGlobals;
  12.  
  13. #endif
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement