Programmable real-time audio signal processing application
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.

gvHashFunc.h 466B

123456789101112131415161718
  1. #ifndef gvHashFunc_h
  2. #define gvHashFunc_h
  3. class gvHashFuncArg
  4. {
  5. public:
  6. virtual ~gvHashFuncArg(){}
  7. virtual double sampleRate() const = 0;
  8. };
  9. extern "C" {
  10. void gvRoundHashValueFunc( void* arg, cmChar_t* label, unsigned labelCharCnt, cmGrV_t value );
  11. void gvMinSecMsHashValueFunc( void* arg, cmChar_t* label, unsigned labelCharCnt, cmGrV_t value );
  12. void gvMidiSciPitchValueFunc( void* arg, cmChar_t* label, unsigned labelCharCnt, cmGrV_t value );
  13. }
  14. #endif