ft2-clone

Fasttracker 2 clone
Log | Files | Refs | README | LICENSE

ft2_sample_saver.h (181B)


      1 #pragma once
      2 
      3 #include <stdint.h>
      4 #include <stdbool.h>
      5 #include "ft2_unicode.h"
      6 
      7 enum
      8 {
      9 	SAVE_NORMAL = 0,
     10 	SAVE_RANGE = 1
     11 };
     12 
     13 void saveSample(UNICHAR *filenameU, bool saveAsRange);