blob: 49c0f4b5eb440ce9749c8282de4860d91705bad2 (
plain)
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
28
29
30
31
32
33
|
// *******************************************************************************
// *
// * Module Name:
// * NPClientWraps.h
// *
// * Software Engineer:
// * Doyle Nickless - GoFlight Inc., for Eye Control Technology.
// *
// * Abstract:
// * Header file for NPClientWraps.cpp module.
// *
// * Environment:
// * User mode
// *
// *******************************************************************************
//
#ifndef _NPCLIENTWRAPS_H_DEFINED_
#define _NPCLIENTWRAPS_H_DEFINED_
#include "NPClient.h"
/////////////
// Defines ///////////////////////////////////////////////////////////////////////
/////////////
//
/////////////////////////
// Function Prototypes ///////////////////////////////////////////////////////////
/////////////////////////
//
NPRESULT NPClient_Init( const char* csDLLPath );
#endif // #ifdef _NPCLIENTWRAPS_H_DEFINED_
|