blob: 8830f34250ce13973d82bab36539d231c2b5a1cc (
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
|
#ifndef _STDAFX_H_
#define _STDAFX_H_
#include <assert.h>
#define ASSERT assert
#define _WIN32_WINNT 0x0500 // Needed for waitable timers
#include <Windows.h>
#include <tchar.h>
#include <string>
#include <vector>
#include <queue>
#include <list>
using namespace std;
#ifdef _UNICODE
#define tstring wstring
#else
#define tstring string
#endif
#include "debug.h"
#include "misc.h"
// HID Includes
#include <setupapi.h>
extern "C"
{
#include "hidsdi.h"
}
#endif
|