-
Notifications
You must be signed in to change notification settings - Fork 1
/
FileIO.h
25 lines (21 loc) · 856 Bytes
/
FileIO.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
/*------------------------------------------------------------------------------
-- FILE: FileIO.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 FILEIO_H
#define FILEIO_H
#include <Windows.h>
#include "osi.h"
#include "WndExtra.h"
/*---------------------------Function Prototypes------------------------------*/
FRAME CreateFrame(HWND hWnd, PBYTE psBuf, DWORD dwLength);
FRAME CreateNullFrame(HWND hWnd);
VOID CloseFileReceive(HWND hWnd);
VOID CloseFileTransmit(HWND hWnd);
BOOL OpenFileReceive(HWND hWnd);
VOID OpenFileTransmit(HWND hWnd);
VOID ReadFromFile(HWND hWnd);
VOID WriteToFile(HWND hWnd);
#endif