⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.h

📁 ndis windows网络驱动程序的范例
💻 H
字号:
/*++

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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -