wintypes.h
来自「linux下的pcsclite」· C头文件 代码 · 共 61 行
H
61 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?