?? wintypes.h
字號(hào):
/* * 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
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -