-
Notifications
You must be signed in to change notification settings - Fork 1
/
Debug.h
22 lines (18 loc) · 829 Bytes
/
Debug.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*------------------------------------------------------------------------------
-- FILE: Debug.h
-- PROGRAM: Dean and the Rockets' Wireless Protocol Testing and Evaluation
-- DATE: Dec 03, 2010
-- DESIGNER: Dean Morin, Ian Lee, Daniel Wright, Marcel Vangrootheest
------------------------------------------------------------------------------*/
#ifndef DEBUG_H
#define DEBUG_H
#include "FileIO.h"
#include "osi.h"
#include "WndExtra.h"
/*---------------------------Function Prototypes------------------------------*/
BOOL CALLBACK Debug (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
VOID MakeDebugFrameOne(HWND hWnd);
VOID MakeDebugFrameTwo(HWND hWnd);
VOID MakeDebugFrameThree(HWND hWnd);
VOID SendDebugCtrlChar(HWND hWnd, BYTE ctrlChar, LPCWSTR szEventName);
#endif