blob: 2ae74c24b13c7e0de1a90aeb4c772993a74c2556 (
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
#include <Windows.h>
#include <string>
#include <vector>
#include <queue>
#include <list>
using namespace std;
#ifdef _UNICODE
#define tstring wstring
#else
#define tstring string
#endif
#include <m_core.h>
#include "debug.h"
#include "misc.h"
// HID Includes
#include <setupapi.h>
extern "C"
{
#include "hidsdi.h"
}
#endif
|