logr0api.h

来自「使用VXD实现Win98环境下的文件和目录隐藏,采用VB,vc等编程」· C头文件 代码 · 共 28 行

H
28
字号
/////////////////////////////////////////////////////////////////
// File: logR0api.h
//
// Defines "C" interface to Windows 95 LOGGER.VxD Ring0 service. 
// Include VtoolsD or DDK95 includes first before including this.
//
#ifndef _INC_LOGR0API_H
#define _INC_LOGR0API_H

#ifdef __cplusplus
 extern "C" {
#endif

DWORD  _cdecl LOGR0_GetVersion();
HANDLE _cdecl LOGR0_OpenFile(const char* szFileName, DWORD BufSize);
BOOL   _cdecl LOGR0_CloseFile(HANDLE hFile);
void   _cdecl LOGR0_Printf(HANDLE hFile, const char* format,...);
DWORD  _cdecl LOGR0_Flush(HANDLE hFile);


#ifdef __cplusplus
 }
#endif

#endif // _INC_LOGR0API_H


⌨️ 快捷键说明

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