mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 08:13:00 +00:00
[TDI]
* Add a PCH. svn path=/trunk/; revision=52934
This commit is contained in:
parent
d2aa5d0656
commit
9b39cfb9a1
11 changed files with 15 additions and 16 deletions
|
@ -23,8 +23,7 @@ list(APPEND SOURCE
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/tdi.def)
|
${CMAKE_CURRENT_BINARY_DIR}/tdi.def)
|
||||||
|
|
||||||
add_library(tdi SHARED ${SOURCE})
|
add_library(tdi SHARED ${SOURCE})
|
||||||
|
add_pch(tdi precomp.h)
|
||||||
set_module_type(tdi kernelmodedriver)
|
set_module_type(tdi kernelmodedriver)
|
||||||
add_importlibs(tdi ntoskrnl hal)
|
add_importlibs(tdi ntoskrnl hal)
|
||||||
|
|
||||||
add_cd_file(TARGET tdi DESTINATION reactos/system32/drivers FOR all)
|
add_cd_file(TARGET tdi DESTINATION reactos/system32/drivers FOR all)
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
/* INCLUDES *****************************************************************/
|
/* INCLUDES *****************************************************************/
|
||||||
|
|
||||||
#include <ntddk.h>
|
#include "precomp.h"
|
||||||
|
|
||||||
typedef struct _CTEBLOCK_EVENT
|
typedef struct _CTEBLOCK_EVENT
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* $Id$
|
/* $Id$
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include <ntddk.h>
|
#include "precomp.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
/* INCLUDES *****************************************************************/
|
/* INCLUDES *****************************************************************/
|
||||||
|
|
||||||
#include <ntddk.h>
|
#include "precomp.h"
|
||||||
|
|
||||||
/* FIXME: Move to a common header! */
|
/* FIXME: Move to a common header! */
|
||||||
struct _CTE_DELAYED_EVENT;
|
struct _CTE_DELAYED_EVENT;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* DESCRIPTION: Entry point for TDI.SYS
|
* DESCRIPTION: Entry point for TDI.SYS
|
||||||
* (c) Captain Obvious
|
* (c) Captain Obvious
|
||||||
*/
|
*/
|
||||||
#include <ntddk.h>
|
#include "precomp.h"
|
||||||
|
|
||||||
extern LONG CteTimeIncrement;
|
extern LONG CteTimeIncrement;
|
||||||
|
|
||||||
|
|
3
reactos/drivers/network/tdi/precomp.h
Normal file
3
reactos/drivers/network/tdi/precomp.h
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#include <ntddk.h>
|
||||||
|
#include <tdikrnl.h>
|
||||||
|
#include <tdi.h>
|
|
@ -20,4 +20,5 @@
|
||||||
<file>obsolete.c</file>
|
<file>obsolete.c</file>
|
||||||
<file>stubs.c</file>
|
<file>stubs.c</file>
|
||||||
</directory>
|
</directory>
|
||||||
|
<pch>precomp.h</pch>
|
||||||
</module>
|
</module>
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#include <ntddk.h>
|
#include "precomp.h"
|
||||||
#include <tdikrnl.h>
|
|
||||||
|
|
||||||
/* De-/Register Action IDs for TdiDeRegister */
|
/* De-/Register Action IDs for TdiDeRegister */
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,7 @@
|
||||||
*
|
*
|
||||||
* DESCRIPTION: Default TDI event handlers.
|
* DESCRIPTION: Default TDI event handlers.
|
||||||
*/
|
*/
|
||||||
#include <ntddk.h>
|
#include "precomp.h"
|
||||||
#include <tdi.h>
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ClientEventChainedReceiveDatagram
|
* ClientEventChainedReceiveDatagram
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ntddk.h>
|
#include "precomp.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
VOID
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
TdiMapBuffer (
|
TdiMapBuffer (
|
||||||
ULONG Unknown0
|
IN PMDL MdlChain
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
/* This function is absolete */
|
/* This function is absolete */
|
||||||
|
@ -23,7 +23,7 @@ TdiMapBuffer (
|
||||||
VOID
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
TdiUnmapBuffer (
|
TdiUnmapBuffer (
|
||||||
ULONG Unknown0
|
IN PMDL MdlChain
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
/* This function is obsolete */
|
/* This function is obsolete */
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
/* $Id$
|
/* $Id$
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#include <ntddk.h>
|
#include "precomp.h"
|
||||||
#include <tdi.h>
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue