mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
689 B
40 lines
689 B
//////////////////////////////////////////////////////////////////////////////\
|
|
//
|
|
// Copyright (c) 1990 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
//
|
|
// ipndis.h
|
|
//
|
|
// Abstract:
|
|
//
|
|
// The main header for the NDIS/KS test driver
|
|
//
|
|
// Author:
|
|
//
|
|
// P Porzuczek
|
|
//
|
|
// Environment:
|
|
//
|
|
// Notes:
|
|
//
|
|
// Revision History:
|
|
//
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _IP_NDIS_H
|
|
#define _IP_NDIS_H
|
|
|
|
|
|
NTSTATUS
|
|
ntInitializeDeviceObject(
|
|
IN PVOID nhWrapperHandle,
|
|
IN PADAPTER pAdapter,
|
|
OUT PDEVICE_OBJECT *pndisDriverObject,
|
|
OUT PVOID pndisDeviceHandle
|
|
);
|
|
|
|
|
|
#endif // _IP_NDIS_H_
|
|
|