MIDIMON.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:
Windows编程
开发平台:
Visual C++
- /**************************************************************************
- *
- * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
- * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
- * PURPOSE.
- *
- * Copyright (C) 1993 - 1997 Microsoft Corporation. All Rights Reserved.
- *
- **************************************************************************/
- /*
- * midimon.h
- */
- /* Compile-time application metrics
- */
- #define MAX_NUM_DEVICES 8 // max # of MIDI input devices
- #define INPUT_BUFFER_SIZE 200 // size of input buffer in events
- #define DISPLAY_BUFFER_SIZE 1000 // size of display buffer in events
- /* Menu IDs
- */
- #define IDM_SAVE 101
- #define IDM_EXIT 102
- #define IDM_SETBUFSIZE 201
- #define IDM_SETDISPLAY 202
- #define IDM_SAVESETUP 203
- #define IDM_SENDTOMAPPER 204
- #define IDM_FILTCHAN0 300
- #define IDM_FILTCHAN1 301
- #define IDM_FILTCHAN2 302
- #define IDM_FILTCHAN3 303
- #define IDM_FILTCHAN4 304
- #define IDM_FILTCHAN5 305
- #define IDM_FILTCHAN6 306
- #define IDM_FILTCHAN7 307
- #define IDM_FILTCHAN8 308
- #define IDM_FILTCHAN9 309
- #define IDM_FILTCHAN10 310
- #define IDM_FILTCHAN11 311
- #define IDM_FILTCHAN12 312
- #define IDM_FILTCHAN13 313
- #define IDM_FILTCHAN14 314
- #define IDM_FILTCHAN15 315
- #define IDM_NOTEOFF 316
- #define IDM_NOTEON 317
- #define IDM_POLYAFTERTOUCH 318
- #define IDM_CONTROLCHANGE 319
- #define IDM_PROGRAMCHANGE 320
- #define IDM_CHANNELAFTERTOUCH 321
- #define IDM_PITCHBEND 322
- #define IDM_CHANNELMODE 323
- #define IDM_SYSTEMEXCLUSIVE 324
- #define IDM_SYSTEMCOMMON 325
- #define IDM_SYSTEMREALTIME 326
- #define IDM_ACTIVESENSE 327
- #define IDM_STARTSTOP 400
- #define IDM_CLEAR 500
- #define IDM_ABOUT 600
- /* String resource IDs
- */
- #define IDS_APPNAME 1
- #define IDS_LABEL 16
- #define IDS_UNKNOWN_EVENT 17
- #define IDS_NOMIDIIN 18
- #define IDS_NOMEM_IBUF 19
- #define IDS_NOMEM_DBUF 20
- #define IDS_NOMEM 21
- #define IDS_START 22
- #define IDS_STOP 23
- #define IDS_WRITEERR 24
- /* Custom messages sent by low-level callback to application
- */
- #define MM_MIDIINPUT WM_USER + 0
- /* The label for the display window.
- */
- // now defined as IDS_LABEL in midimon.rc stringtable
- /* Structure for translating virtual key messages to scroll messages.
- */
- typedef struct keyToScroll_tag
- {
- WORD wVirtKey;
- int iMessage;
- WORD wRequest;
- } KEYTOSCROLL;
- /* Structure to represent a single MIDI event.
- */
- #define EVNT_F_ERROR 0x00000001L
- typedef struct event_tag
- {
- DWORD fdwEvent;
- DWORD dwDevice;
- DWORD timestamp;
- DWORD data;
- } EVENT;
- typedef EVENT FAR *LPEVENT;
- /* Function prototypes
- */
- LRESULT FAR PASCAL WndProc(HWND, UINT, WPARAM , LPARAM);
- VOID CommandMsg(HWND hWnd, WPARAM wParam, LPARAM lParam);
- void DoMenuItemCheck(HWND hWnd, WORD menuItem, BOOL newState);
- void SetupCustomChecks(HANDLE hInstance, HWND hWnd);
- BOOL InitFirstInstance(HANDLE);
- int Error(LPSTR msg);
- LPTSTR GetStringRes (int id);