blob: 4748bcf8947cdedc2378495840cd084ec5399695 (
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
34
35
36
37
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Module Name: precomp.h
// Abstract:
//
// Precompiled header file for the NetNfpControl console app
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma once
#ifndef UNICODE
#define UNICODE
#endif
#ifndef _UNICODE
#define _UNICODE
#endif
// Windows Headers
#include <windows.h>
#include <Winsock2.h>
#include <Mswsock.h>
#include <Ws2bth.h>
#include <Ws2tcpip.h>
#include <conio.h>
#include <setupapi.h>
#include <tchar.h>
#include <strsafe.h>
#include <winioctl.h>
// ATL stuff
#include <atlbase.h>
// Common NetNfp header
#include "NetNfp.h"
|