thunks.h
来自「用于查询PC机上的USB端口是否有设备挂接上」· C头文件 代码 · 共 29 行
H
29 行
/*****************************************************************************\
* *
* thunks.h - thunking functions, types, and definitions *
* *
* Version 1.0 *
* *
* NOTE: windows.h must be #included first *
* *
* Copyright (c) 1994, Microsoft Corp. All rights reserved. *
* *
\*****************************************************************************/
#ifndef _INC_THUNKS
#define _INC_THUNKS
#ifndef RC_INVOKED
#pragma pack(1) /* Assume byte packing throughout */
#endif /* RC_INVOKED */
#ifndef _INC_WINDOWS /* Must include windows.h first */
#error windows.h must be included before thunks.h
#endif /* _INC_WINDOWS */
DWORD WINAPI MapSL(DWORD);
DWORD WINAPI MapLS(DWORD);
VOID WINAPI UnMapLS(LPVOID);
#endif /* _INC_THUNKS */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?