GetDeviceDriverBaseNameA 函数 (psapi.h)

检索指定设备驱动程序的基名称。

语法

DWORD GetDeviceDriverBaseNameA(
  [in] LPVOID ImageBase,
       LPSTR  lpFilename,
  [in] DWORD  nSize
);

参数

[in] ImageBase

设备驱动程序的加载地址。 可以使用 EnumDeviceDrivers 函数检索此值。

lpFilename

待定

[in] nSize

lpBaseName 缓冲区的大小(以字符为单位)。 如果缓冲区不够大,无法存储基名称加上终止 null 字符,则会截断字符串。

返回值

如果函数成功,则返回值指定复制到缓冲区的字符串的长度,不包括任何终止 null 字符。

如果函数失败,则返回值为零。 若要获取扩展的错误信息,请调用 GetLastError

言论

从 Windows 7 和 Windows Server 2008 R2 开始,Psapi.h 为 PSAPI 函数建立版本号。 PSAPI 版本号会影响用于调用函数的名称和程序必须加载的库。

如果PSAPI_VERSION为 2 或更高版本,则此函数在 Psapi.h 中定义为 K32GetDeviceDriverBaseName,并在 Kernel32.lib 和 Kernel32.dll中导出。 如果PSAPI_VERSION为 1,则此函数在 Psapi.h 中定义为 GetDeviceDriverBaseName,并在 Psapi.lib 中导出,Psapi.dll 作为调用 K32GetDeviceDriverBaseName的包装器。

必须在早期版本的 Windows 以及 Windows 7 及更高版本上运行的程序应始终将此函数称为 GetDeviceDriverBaseName。 若要确保符号的正确解析,请将 Psapi.lib 添加到 TARGETLIBS 宏,并使用 –DPSAPI_VERSION=1 编译程序。 若要使用运行时动态链接,请加载 Psapi.dll。

例子

有关示例,请参阅 枚举系统中的所有设备驱动程序。

注意

psapi.h 标头将 GetDeviceDriverBaseName 定义为一个别名,该别名根据 UNICODE 预处理器常量的定义自动选择此函数的 ANSI 或 Unicode 版本。 将中性编码别名与不中性编码的代码混合使用可能会导致编译或运行时错误不匹配。 有关详细信息,请参阅函数原型的 约定。

要求

要求 价值
最低支持的客户端 Windows XP [仅限桌面应用]
支持的最低服务器 Windows Server 2003 [仅限桌面应用]
目标平台 窗户
标头 psapi.h
Windows 7 和 Windows Server 2008 R2 上的 Kernel32.lib;Windows 7 和 Windows Server 2008 R2 上的 Psapi.lib (如果 PSAPI_VERSION=1);Windows Server 2008、Windows Vista、Windows Server 2003 和 Windows XP 上的 Psapi.lib
DLL Windows 7 和 Windows Server 2008 R2 上的 Kernel32.dll;windows 7 和 Windows Server 2008 R2 上的 Psapi.dll(如果 PSAPI_VERSION=1);Windows Server 2008、Windows Vista、Windows Server 2003 和 Windows XP 上的 Psapi.dll

另请参阅

设备驱动程序信息

EnumDeviceDrivers

PSAPI 函数