config.h
来自「ndis windows网络驱动程序的范例」· C头文件 代码 · 共 61 行
H
61 行
/*++
Copyright (c) 1995-1996 Microsoft Corporation
Module Name:
config.h
Abstract:
This file defines all constants and structures necessary for support of
dynamic configuration.
Author:
Jim Mateer 4/1/97
Revision History:
--*/
#include <ntddk.h>
#include <ndis.h>
#ifndef _CONFIG_
#define _CONFIG_
/*++
Routine Description:
This routine is called by Spans to get information from the configuration
management routines. We read the registry, starting at RegistryPath,
to get the parameters. If they don't exist, we use the defaults
set in spancnfg.h file.
Arguments:
RegistryPath - The name of Spans' node in the registry.
ConfigurationInfoPtr - A pointer to the configuration information structure.
Return Value:
Status - STATUS_SUCCESS if everything OK, STATUS_INSUFFICIENT_RESOURCES
otherwise.
--*/
NTSTATUS
ConfigureDriver (
IN PUNICODE_STRING RegistryPath,
IN PCONFIG_DATA ConfigurationInfoPtr
);
/* End Prototypes */
#endif /* _CONFIG_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?