btreg.h

来自「完整的基于Conxant平台的USB电视棒的WIN驱动程序。」· C头文件 代码 · 共 33 行

H
33
字号
#ifndef BTREG_H
#define BTREG_H

#ifdef __cplusplus
extern "C" {
#endif

#pragma warning( push, 3 )
#include <wdm.h>
#include "strmini.h"
#include "ksmedia.h"
#pragma warning( pop )

//
// Disable some unnecessary compiler warnings. See online help for more
// information on each warning
//
#pragma warning( disable : 4514 ) // unreferenced inline function

NTSTATUS		GetRegistryValue( HANDLE, const PUNICODE_STRING, PCHAR, ULONG );
NTSTATUS		SetRegistryValue( HANDLE, const PUNICODE_STRING, ULONG, PCHAR, ULONG );

HANDLE		OpenDriverKey( PDEVICE_OBJECT );
void			PrepareKeyName( PUNICODE_STRING, PCHAR, int );


#ifdef __cplusplus
}
#endif

#endif	// BTREG_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?