-
Notifications
You must be signed in to change notification settings - Fork 1
/
Main.h
27 lines (22 loc) · 872 Bytes
/
Main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*------------------------------------------------------------------------------
-- FILE: Main.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 STRICT
#define STRICT
#endif
#ifndef MAIN_H
#define MAIN_H
#include <Windows.h>
#include <stdio.h>
#include "Menu.h"
#include "osi.h"
#include "crc.h"
/*--------------------------------Macros--------------------------------------*/
#define WND_CAPTION TEXT("Dean and the Rockets' Wireless Protocol Testing \
and Evaluation Facilitator")
/*---------------------------Function Prototypes------------------------------*/
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
#endif