// // Copyright (c) 2013 _iTo_ // #pragma warning(disable:4018) // warning C4018: '<=' : signed と unsigned の数値を比較しようとしました。 の抑止 #pragma comment (lib, "winmm.lib") #define IDM_PLAY 0x1002 #define IDM_STOP 0x1004 #define IDM_END 0x1010 #define IDC_TIMER 0x2010 #define IDM_ABOUT 0x4110 #define IDC_STATIC0 0x4120 #define IDC_STATIC1 0x4121 #define IDC_STATIC2 0x4122 #define IDD_ABOUTBOX 0x4130 #define WAVEHEADER 44 #define WTIME 40 #define MAXLEVEL 1000 // 表示用BMP画像の横サイズ #define CENTERSP 10 typedef union ShortData{ unsigned char c[2]; short s; }SHORTDATA; typedef union LongData{ unsigned char c[4]; short s; long l; }LONGDATA;