* Create a main header and move inclusions to it.
CORE-7716

svn path=/trunk/; revision=61975
This commit is contained in:
Amine Khaldi 2014-02-04 10:52:50 +00:00
parent df348acfe2
commit e052e04e03
3 changed files with 9 additions and 2 deletions

View file

@ -5,7 +5,8 @@
* PURPOSE: TDI entity enumeration
*/
#include "iphlpapi_private.h"
#include "precomp.h"
#include "tdilib.h"
/* A generic thing-getting function which interacts in the right way with

View file

@ -5,7 +5,7 @@
* PURPOSE: TDI transport handle management
*/
#include "iphlpapi_private.h"
#include "precomp.h"
const PWCHAR TcpFileName = L"\\Device\\Tcp";

View file

@ -0,0 +1,6 @@
#ifndef _TDILIB_PCH_
#define _TDILIB_PCH_
#include <iphlpapi_private.h>
#endif /* _TDILIB_PCH_ */