Section 5. Example Applications
45
C++ EXAMPLE
The following is an example of C++:
/* -------------------------------------------------------------------------- */
/*
TST: Test Application
*/
/*
*/
/*
MTDTEST.C - Test module for Mag-Tek device drivers
*/
/* -------------------------------------------------------------------------- */
/* Version 1.00
$Revision::
$ */
/* -------------------------------------------------------------------------- */
#include <windows.h>
#include <stdio.h>
#include <conio.h>
#include <string.h>
/* --- Static variables ----------------------------------------------------- */
static volatile BOOL
quit = FALSE;
static char
sbuff[128];
static HANDLE
drv_h;
static HANDLE
in_threadh;
static HANDLE
out_threadh;
static OVERLAPPED
ov_r, ov_w;
/* --- Macro definitions ---------------------------------------------------- */
#define OPEN_DEVICE(name)
\
CreateFile(
\
(name),
/* LPCTSTR - pointer to name of the file */ \
GENERIC_READ | GENERIC_WRITE,/* DWORD
- access (read-write) mode
*/ \
0,
/* DWORD
- share mode
*/ \
NULL,
/* LPSECURITY_ATTRIBUTES
*/ \
/*
- pointer to security attribs */ \
OPEN_EXISTING,
/* DWORD
- how to create
*/ \
0
|
\
FILE_FLAG_OVERLAPPED,
/* DWORD
- file attributes
*/ \
NULL
/* HANDLE
- template handle
*/ \
)
/* --- Internal Function Prototypes ----------------------------------------- */
void
input_thread
(void *p);
void
output_thread
(void *p);
/* --- Main ----------------------------------------------------------------- */
int main ( int argc, char *argv[])
{
HANDLE
ret_h;
DWORD
ws;
DWORD
retdw;
int
stage=1;
Содержание ET1725L Series
Страница 1: ......
Страница 26: ...3 22 E l o E n t u i t i v e T o u c h m o n i t o r U s e r G u i d e...
Страница 37: ...C 33 17 LCD Touchmonitor Dimensions 478 434 429 370 338 270 3 43 219...
Страница 41: ...37 N10051...
Страница 42: ...38 E l o E n t u i t i v e T o u c h m o n i t o r U s e r G u i d e...
Страница 52: ...vi Figure 1 1 Port Powered Swipe Reader...
Страница 56: ...Port Powered Swipe Reader 4 Figure 1 3 Dimensions...
Страница 60: ...Port Powered Swipe Reader 8...
Страница 69: ...vi Figure 1 1 USB Swipe Reader...
Страница 73: ...USB Swipe Reader 4...
Страница 77: ...USB Swipe Reader 8...
Страница 79: ...USB Swipe Reader 10...
Страница 99: ...viii Figure 1 1 MagTek Devices and Device Drivers for Windows MTD MagTek Device Drivers for Windows...
Страница 127: ...MagTek Device Drivers for Windows 28...
Страница 137: ...MagTek Device Drivers for Windows 38...
Страница 151: ...MagTek Device Drivers for Windows 52...
Страница 173: ...MagTek Device Drivers for Windows 74...
Страница 175: ...MagTek Device Drivers for Windows 76...
Страница 177: ...MagTek Device Drivers for Windows 78...
Страница 192: ......