/*
	$RCSfile: KeyBoard.h $
	$Revision: 1.1 $
	$Author: doomer $
	$Date: 1996/10/21 02:36:28 $
	Copyright (c) 1996 John Dumais
*/

#if !defined(_VeeKeyboardIncluded_)
#define _VeeKeyboardIncluded_

#define NOMINMAX 1

#include <windows.h>
#include <iostream>
#include <new.h>
#include <vector>

extern "C" {
	BOOL WINAPI DllMain(HMODULE hModule, DWORD reason, LPVOID reserved);
	long recordKeyStrokes();
	long stopRecording();
	long nKeyStrokes();
	long getKeyStrokes(short *keyStrokeArray, long *nArrayElements);
}

__declspec(dllexport)LRESULT CALLBACK MyKeyboardProc(int code, WPARAM wParam, LPARAM lParam);

#endif


/*
	$Log: KeyBoard.h $
	Revision 1.1  1996/10/21 02:36:28  doomer
	Initial revision
*/