www.pudn.com > FFTdemo.zip > main.h


#ifndef __MAIN_H__ 
#define __MAIN_H__ 
 
/* some resource id, used by win 32 sdk  
 * ------------------------------------ 
 */ 
/* wave form */ 
#define IDG_WFRM    101     /* group */ 
#define IDR_WSQU    102     /* square wave */ 
#define IDR_WSIN    103     /* sine wave */ 
#define IDR_WTRI    104     /* triangular wave */ 
 
/* wave attribute */ 
#define IDG_WATR    110     /* group */ 
#define IDS_WCYC    111     /* cycle laber */ 
#define IDE_WCYC    112     /* cycle input */ 
#define IDS_WSCO    111     /* scope laber */ 
#define IDE_WSCO    112     /* scope input */ 
#define IDS_WPAR    111     /* parse laber */ 
#define IDE_WPAR    112     /* parse input */   
 
/* sample control */ 
#define IDG_SAMP    120     /* group */ 
#define IDS_SALT    121     /* sample alternation */ 
#define IDE_SALT    122     /* sample altrenation edit */ 
#define IDS_SNUM    123     /* sample number */ 
#define IDE_SNUM    124     /* sample number edit */ 
 
#define IDC_OK      130     /* OK button */ 
 
 
/* my personal const number  
 * ------------------------ 
 */ 
#define GAX 40      /* graphic A origin x value */ 
#define GAY 210     /* graphic A origin y value */ 
#define GBX 40      /* graphic B origin x value */ 
#define GBY 400     /* graphic B origin y value */ 
 
#define FRX 20      /* frameset origin x value */ 
#define FRY 20      /* frameset origin y value */ 
 
#endif //__MAIN_H__