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

📄 wintypes.h

📁 linux下的pcsclite
💻 H
字号:
/* * This keeps a list of Windows(R) types. * * MUSCLE SmartCard Development ( http://www.linuxnet.com ) * * Copyright (C) 1999 *  David Corcoran <corcoran@linuxnet.com> * * $Id: wintypes.h,v 1.9 2004/07/06 17:05:04 rousseau Exp $ */#ifndef __wintypes_h__#define __wintypes_h__#ifdef __cplusplusextern "C"{#endif#if !defined(WIN32)#ifndef BYTE	typedef unsigned char BYTE;#endif	typedef unsigned char UCHAR;	typedef unsigned char *PUCHAR;	typedef unsigned short USHORT;#ifndef __COREFOUNDATION_CFPLUGINCOM__	typedef unsigned long ULONG;	typedef void *LPVOID;	typedef short BOOL;#endif	typedef unsigned long *PULONG;	typedef const void *LPCVOID;	typedef unsigned long DWORD;	typedef unsigned long *PDWORD;	typedef unsigned short WORD;	typedef long LONG;	typedef long RESPONSECODE;	typedef const char *LPCTSTR;	typedef const BYTE *LPCBYTE;	typedef BYTE *LPBYTE;	typedef DWORD *LPDWORD;	typedef char *LPTSTR;	/* this type is deprecated but still used by old drivers and applications	 * You should use LPTSTR instead */	typedef char *LPSTR __attribute__ ((deprecated));#else#include <windows.h>#endif#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

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