亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? windows.h

?? DOS 6.22 的源代碼
?? H
?? 第 1 頁 / 共 5 頁
字號:
/*  If defined, the following flags inhibit definition
    of the indicated constants.

    NOGDICAPMASKS	CC_*, LC_*, PC_*, CP_*, TC_*, RC_
    NOVIRTUALKEYCODES	VK_*
    NOWINMESSAGES	WM_*
    NONCMESSAGES	WM_NC* and HT*
    NOWINSTYLES		WS_*, CS_*, ES_*, LBS_*
    NOSYSMETRICS	SM_*
    NODRAWFRAME		DF_*
    NOMENUS		MF_*
    NOICON		IDI_*
    NOKEYSTATE		MK_*
    NOSYSCOMMANDS	SC_*
    NORASTEROPS		binary and tertiary raster ops
    NOSHOWWINDOW	SHOW_* and HIDE_*

    The following flags inhibit declarations of the following groups
    of procedures and type definitions.
    "associated routines" refers to routines with parameters or return
     values of the given type.

    OEMRESOURCE	    - define this and get the Oem Resource values.
    NOSYSMETRICS    - GetSystemMetrics
    NOATOM	    - Atom Manager routines
    NOBITMAP	    - typedef HBITMAP and associated routines
    NOBRUSH	    - typedef HBRUSH and associated routines
    NOCLIPBOARD	    - clipboard routines
    NOCOLOR
    NOCREATESTRUCT  - typedef CREATESTRUCT
    NOCTLMGR	    - control and dialog routines
    NODRAWTEXT	    - DrawText() and DT_*
    NOFONT	    - typedef FONT and associated routines
    NOGDI	    - StretchBlt modes and gdi logical objects
    NOHDC	    - typedef HDC and associated routines
    NOMB	    - MB_* and MessageBox()
    NOMEMMGR	    - GMEM_*, LMEM_*, GHND, LHND, associated routines
    NOMENUS	    - HMENU and associated routines
    NOMETAFILE	    - typedef METAFILEPICT
    NOMINMAX	    - Macros min(a,b) and max(a,b)
    NOMSG	    - typedef MSG and associated routines
    NOOPENFILE	    - OpenFile(), OemToAnsi, AnsiToOem, and OF_*
    NOPEN	    - typedef HPEN and associated routines
    NOPOINT	    - typedef POINT and associated routines
    NORECT	    - typedef RECT and associated routines
    NOREGION	    - typedef HRGN and associated routines
    NOSCROLL	    - SB_* and scrolling routines
    NOSOUND	    - Sound driver routines
    NOTEXTMETRIC    - typedef TEXTMETRIC and associated routines
    NOWH	    - SetWindowsHook and WH_*
    NOWINOFFSETS    - GWL_*, GCL_*, associated routines
    NOWNDCLASS	    - typedef WNDCLASS and associated routines
    NOCOMM	    - COMM driver routines
    NOKANJI	    - Kanji support stuff.
*/

#ifdef RC_INVOKED
/*
 Turn off a bunch of stuff to ensure that RC files compile OK
*/
#define NOCOMM
#define NOKANJI
#define NOWH
#define NOTEXTMETRIC
#define NOSOUND
#define NOSCROLL
#define NOGDICAPMASKS
#define NOSYSMETRICS
#define NORASTEROPS
#define NOATOM
#define NOFONT
#define NOREGION
#define NORECT
#define NOPEN
#define NOPOINT
#define NOOPENFILE
#define NOMSG
#define NOMINMAX
#define NOMETAFILE
#define NOHDC
#define NOGDI
#endif

#ifndef PASCAL
#define PASCAL	pascal
#endif

#define FALSE	0
#define TRUE	1
#define NULL	0

#define FAR	far
#define NEAR	near
#define LONG	long
#define VOID	void

typedef unsigned char	BYTE;
typedef unsigned short	WORD;
typedef unsigned long  DWORD;
typedef int	  BOOL;
typedef char	 *PSTR;
typedef char NEAR*NPSTR;
typedef char FAR *LPSTR;
typedef int  FAR *LPINT;

#ifndef NOMINMAX
#define max(a,b)	((a) > (b) ? (a) : (b))
#define min(a,b)	((a) < (b) ? (a) : (b))
#endif

#define MAKELONG(a, b)	((long)(((unsigned)(a)) | ((unsigned long)((unsigned)(b))) << 16))
#define LOWORD(l)	((WORD)(l))
#define HIWORD(l)	((WORD)(((DWORD)(l) >> 16) & 0xFFFF))
#define LOBYTE(w)	((BYTE)(w))
#define HIBYTE(w)	(((WORD)(w) >> 8) & 0xff)

#ifndef NOPOINT
#define MAKEPOINT(l)	(*((POINT *)&(l)))
#endif

#ifdef OEMRESOURCE
#define OBM_CLOSE	32767
#define OBM_SIZE	32766
#define OBM_UPARROW	32765
#define OBM_DNARROW	32764
#define OBM_RGARROW	32763
#define OBM_LFARROW	32762
#define OBM_BTSIZE	32761
#define OBM_CHECK	32760
#define OBM_CHECKBOXES	32759
#define OBM_BTNCORNERS	32758
#define OBM_REDUCE	32757
#define OBM_ZOOM	32756
#define OBM_RESTORE	32755
#define OCR_NORMAL	32512
#define OCR_IBEAM	32513
#define OCR_WAIT	32514
#define OCR_CROSS	32515
#define OCR_UP		32516
#define OCR_SIZE	32640
#define OCR_ICON	32641
#define OCR_SIZENWSE	32642
#define OCR_SIZENESW	32643
#define OCR_SIZEWE	32644
#define OCR_SIZENS	32645
#define OCR_SIZEALL	32646

#define OIC_SAMPLE	32512
#define OIC_HAND	32513
#define OIC_QUES	32514
#define OIC_BANG	32515
#define OIC_NOTE	32516
#endif

/*  Scroll bar constants */
#ifndef NOSCROLL
#define SB_HORZ		    0
#define SB_VERT		    1
#define SB_CTL		    2
#define SB_BOTH		    3

/*  Scroll Commands */
#define SB_LINEUP	    0
#define SB_LINEDOWN	    1
#define SB_PAGEUP	    2
#define SB_PAGEDOWN	    3
#define SB_THUMBPOSITION    4
#define SB_THUMBTRACK	    5
#define SB_TOP		    6
#define SB_BOTTOM	    7
#define SB_ENDSCROLL	    8
#endif

#ifndef NOSHOWWINDOW

/* ShowWindow commands */

#define SW_HIDE		    0
#define SW_SHOWNORMAL	    1
#define SW_RESTORE	    1
#define SW_NORMAL	    1
#define SW_SHOWMINIMIZED    2
#define SW_SHOWMAXIMIZED    3
#define SW_MAXIMIZE	    3
#define SW_SHOWNOACTIVATE   4
#define SW_SHOW		    5
#define SW_MINIMIZE	    6
#define SW_SHOWMINNOACTIVE  7
#define SW_SHOWNA	    8

/* Old showwindow commands */

#define HIDE_WINDOW	0
#define SHOW_OPENWINDOW 1
#define SHOW_ICONWINDOW 2
#define SHOW_FULLSCREEN 3
#define SHOW_OPENNOACTIVATE 4

/* identifiers for the WM_SHOWWINDOW message */
#define SW_PARENTCLOSING    1
#define SW_OTHERZOOM	    2
#define SW_PARENTOPENING    3
#define SW_OTHERUNZOOM	    4
#endif

/* flags for regions */
#ifndef NOREGION
#define ERROR		0
#define NULLREGION	1
#define SIMPLEREGION	2
#define COMPLEXREGION	3

/* styles for CombineRgn */
#define RGN_AND	 1
#define RGN_OR	 2
#define RGN_XOR	 3
#define RGN_DIFF 4
#define RGN_COPY 5
#endif

#ifndef NOVIRTUALKEYCODES
/* Virtual Keys, Standard Set */

#define VK_LBUTTON  0x01
#define VK_RBUTTON  0x02
#define VK_CANCEL   0x03
#define VK_MBUTTON  0x04    /* NOT contiguous with L & RBUTTON */
#define VK_BACK	    0x08
#define VK_TAB	    0x09
#define VK_CLEAR    0x0C
#define VK_RETURN   0x0D
#define VK_SHIFT    0x10
#define VK_CONTROL  0x11
#define VK_MENU	    0x12
#define VK_PAUSE    0x13
#define VK_CAPITAL  0x14
#define VK_ESCAPE   0x1B
#define VK_SPACE    0x20

#define VK_PRIOR    0x21
#define VK_NEXT	    0x22
#define VK_END	    0x23
#define VK_HOME	    0x24
#define VK_LEFT	    0x25
#define VK_UP	    0x26
#define VK_RIGHT    0x27
#define VK_DOWN	    0x28

/* VK_A thru VK_Z are the same as their ASCII equivalents: 'A' thru 'Z' */
/* VK_0 thru VK_9 are the same as their ASCII equivalents: '0' thru '0' */

#define VK_SELECT   0x29
#define VK_PRINT    0x2A
#define VK_EXECUTE  0x2B
#define VK_COPY	    0x2C
#define VK_INSERT   0x2D
#define VK_DELETE   0x2E
#define VK_HELP	    0x2F

#define VK_NUMPAD0  0x60
#define VK_NUMPAD1  0x61
#define VK_NUMPAD2  0x62
#define VK_NUMPAD3  0x63
#define VK_NUMPAD4  0x64
#define VK_NUMPAD5  0x65
#define VK_NUMPAD6  0x66
#define VK_NUMPAD7  0x67
#define VK_NUMPAD8  0x68
#define VK_NUMPAD9  0x69
#define VK_MULTIPLY 0x6A
#define VK_ADD	    0x6B
#define VK_SEPARATOR 0x6C
#define VK_SUBTRACT 0x6D
#define VK_DECIMAL  0x6E
#define VK_DIVIDE   0x6F

#define VK_F1	    0x70
#define VK_F2	    0x71
#define VK_F3	    0x72
#define VK_F4	    0x73
#define VK_F5	    0x74
#define VK_F6	    0x75
#define VK_F7	    0x76
#define VK_F8	    0x77
#define VK_F9	    0x78
#define VK_F10	    0x79
#define VK_F11	    0x7A
#define VK_F12	    0x7B
#define VK_F13	    0x7C
#define VK_F14	    0x7D
#define VK_F15	    0x7E
#define VK_F16	    0x7F

#define VK_NUMLOCK  0x90

#endif

/* SetWindowsHook codes */
#ifndef NOWH
#define WH_MSGFILTER	    -1
#define WH_JOURNALRECORD    0
#define WH_JOURNALPLAYBACK  1
#define WH_KEYBOARD	    2
#define WH_GETMESSAGE	    3
#define WH_CALLWNDPROC	    4
#define WH_CBT		    5
#define WH_SYSMSGFILTER	    6
#define WH_WINDOWMGR	    7

/* HC_* Hook Codes */
#define HC_LPLPFNNEXT -2
#define HC_LPFNNEXT   -1
#define HC_ACTION      0
#define HC_GETNEXT     1
#define HC_SKIP	       2
#define HC_NOREM       3
#define HC_NOREMOVE    3

/* CBT hook codes */
#define HCBT_MOVESIZE  0
#define HCBT_MINMAX    1
#define HCBT_QS	       2

/* WH_MSGFILTER filter proc codes */
#define MSGF_DIALOGBOX	    0
#define MSGF_MESSAGEBOX	    1
#define MSGF_MENU	    2
#define MSGF_MOVE	    3
#define MSGF_SIZE	    4
#define MSGF_SCROLLBAR	    5
#define MSGF_NEXTWINDOW	    6

/* Define window manager hook codes */
#define WC_INIT		    1
#define WC_SWP		    2
#define WC_DEFWINDOWPROC    3
#define WC_MINMAX	    4
#define WC_MOVE		    5
#define WC_SIZE		    6
#define WC_DRAWCAPTION	    7

/* message structure used in journaling	 */
typedef struct eventmsg {
    unsigned message;
    WORD paramL;
    WORD paramH;
    DWORD time;
} EVENTMSG;

typedef EVENTMSG *PEVENTMSGMSG;
typedef EVENTMSG NEAR *NPEVENTMSGMSG;
typedef EVENTMSG FAR *LPEVENTMSGMSG;


#endif

/*  Binary raster ops */
#ifndef NORASTEROPS
#define R2_BLACK	    1	/*  0	    */
#define R2_NOTMERGEPEN	    2	/* DPon	    */
#define R2_MASKNOTPEN	    3	/* DPna	    */
#define R2_NOTCOPYPEN	    4	/* PN	    */
#define R2_MASKPENNOT	    5	/* PDna	    */
#define R2_NOT		    6	/* Dn	    */
#define R2_XORPEN	    7	/* DPx	    */
#define R2_NOTMASKPEN	    8	/* DPan	    */
#define R2_MASKPEN	    9	/* DPa	    */
#define R2_NOTXORPEN	   10	/* DPxn	    */
#define R2_NOP		   11	/* D	    */
#define R2_MERGENOTPEN	   12	/* DPno	    */
#define R2_COPYPEN	   13	/* P	    */
#define R2_MERGEPENNOT	   14	/* PDno	    */
#define R2_MERGEPEN	   15	/* DPo	    */
#define R2_WHITE	   16	/*  1	    */

/*  Ternary raster operations */
#define SRCCOPY	    (DWORD)0x00CC0020  /* dest=source			     */
#define SRCPAINT    (DWORD)0x00EE0086  /* dest=source OR dest		     */
#define SRCAND	    (DWORD)0x008800C6  /* dest = source AND dest	     */
#define SRCINVERT   (DWORD)0x00660046  /* dest = source XOR	 dest	     */
#define SRCERASE    (DWORD)0x00440328  /* dest = source AND (not dest )	     */
#define NOTSRCCOPY  (DWORD)0x00330008  /* dest = (not source)		     */
#define NOTSRCERASE (DWORD)0x001100A6  /* dest = (not source) AND (not dest) */
#define MERGECOPY   (DWORD)0x00C000CA  /* dest = (source AND pattern)	     */
#define MERGEPAINT  (DWORD)0x00BB0226  /* dest = (NOT source) OR dest	     */
#define PATCOPY	    (DWORD)0x00F00021  /* dest = pattern		     */
#define PATPAINT    (DWORD)0x00FB0A09  /* dest = DPSnoo			     */
#define PATINVERT   (DWORD)0x005A0049  /* dest = pattern XOR dest	     */
#define DSTINVERT   (DWORD)0x00550009  /* dest = (not dest)		     */
#define BLACKNESS   (DWORD)0x00000042  /* dest = BLACK			     */
#define WHITENESS   (DWORD)0x00FF0062  /* dest = WHITE			     */
#endif

#ifndef NOGDI
/* StretchBlt() modes */
#define BLACKONWHITE	1
#define WHITEONBLACK	2
#define COLORONCOLOR	3

/* PolyFill modes */
#define ALTERNATE	1
#define WINDING		2

/* text alignment options */
#define TA_UPDATECP	1
#define TA_NOUPDATECP	0

#define TA_LEFT		0
#define TA_RIGHT	2
#define TA_CENTER	6

#define TA_TOP		0
#define TA_BOTTOM	8
#define TA_BASELINE	24

#define ETO_GRAYED	1
#define ETO_OPAQUE	2
#define ETO_CLIPPED	4



#define ASPECT_FILTERING 0x00000001

#ifndef NOMETAFILE
/* Meta file function numbers	*/
#define META_SETBKCOLOR		     0x0201
#define META_SETBKMODE		     0x0102
#define META_SETMAPMODE		     0x0103
#define META_SETROP2		     0x0104
#define META_SETRELABS		     0x0105
#define META_SETPOLYFILLMODE	     0x0106
#define META_SETSTRETCHBLTMODE	     0x0107
#define META_SETTEXTCHAREXTRA	     0x0108
#define META_SETTEXTCOLOR	     0x0209
#define META_SETTEXTJUSTIFICATION    0x020A
#define META_SETWINDOWORG	     0x020B
#define META_SETWINDOWEXT	     0x020C
#define META_SETVIEWPORTORG	     0x020D

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区三区不卡在线观看| 午夜精品国产更新| 亚洲一区二区成人在线观看| 久色婷婷小香蕉久久| 色婷婷av一区二区三区大白胸 | 六月丁香综合在线视频| 菠萝蜜视频在线观看一区| 欧美精品在线观看播放| 亚洲欧美自拍偷拍色图| 国产一区二区三区美女| 欧美日韩在线免费视频| 亚洲天堂久久久久久久| 国产高清精品久久久久| 欧美一级爆毛片| 亚洲综合精品久久| 91美女片黄在线| 久久久久亚洲蜜桃| 美女看a上一区| 911国产精品| 婷婷中文字幕一区三区| 91传媒视频在线播放| 中文字幕亚洲区| 成人免费视频播放| 国产欧美视频一区二区三区| 精品一区二区三区在线播放| 欧美一区二区三区在线观看 | 一区二区高清免费观看影视大全| 成人污视频在线观看| 久久久久国产精品人| 国产一区高清在线| 久久综合九色综合欧美就去吻| 另类中文字幕网| 日韩欧美你懂的| 免费高清不卡av| 欧美mv日韩mv亚洲| 久久99国产精品成人| 日韩欧美电影在线| 久久成人免费网站| 久久精品欧美一区二区三区麻豆| 国内精品久久久久影院色| 欧美精品在线视频| 6080日韩午夜伦伦午夜伦| 日本sm残虐另类| 日韩美女视频在线| 国产一区二区精品久久99| 国产亚洲精品bt天堂精选| 国产高清一区日本| 亚洲三级久久久| 欧美精品v国产精品v日韩精品| 蜜桃视频一区二区三区| 精品免费一区二区三区| 成人性生交大片免费看在线播放| 国产精品二三区| 欧美日韩成人激情| 六月婷婷色综合| 亚洲欧洲精品成人久久奇米网| 日本福利一区二区| 日本视频在线一区| 国产精品乱人伦中文| 欧美午夜电影网| 久久国产免费看| 自拍偷拍欧美激情| 9191精品国产综合久久久久久| 韩国av一区二区三区四区| 中文字幕精品一区二区三区精品| 欧美午夜一区二区三区免费大片| 免费成人小视频| 最新高清无码专区| 制服丝袜激情欧洲亚洲| 成人av网在线| 日本不卡在线视频| **性色生活片久久毛片| 在线不卡中文字幕| 99久久精品国产导航| 蜜臀久久99精品久久久久久9| 国产精品欧美一级免费| 欧美一区二区精品在线| 91在线一区二区| 美女网站视频久久| 亚洲国产精品视频| 国产精品入口麻豆原神| 欧美日韩色综合| 91理论电影在线观看| 韩国女主播成人在线观看| 蜜臀va亚洲va欧美va天堂| 国产人久久人人人人爽| 欧美日韩一区中文字幕| 精品影视av免费| 一区二区免费看| 国产精品国产三级国产a| 精品日韩av一区二区| 在线免费亚洲电影| av亚洲精华国产精华精华| 免费不卡在线观看| 亚洲一区二区三区在线播放| 欧美国产一区二区| 久久先锋资源网| 久久亚洲影视婷婷| 日韩欧美一区二区不卡| 欧美久久一二区| 在线观看免费成人| 色婷婷av一区二区三区大白胸 | 欧美电影免费提供在线观看| 欧美在线一二三四区| 91色视频在线| 99久久伊人久久99| 99久久er热在这里只有精品15 | 激情文学综合丁香| 久久精品国产99久久6| 日韩av电影免费观看高清完整版| 一区二区三区不卡视频| 综合分类小说区另类春色亚洲小说欧美| 国产婷婷色一区二区三区四区 | 日韩你懂的电影在线观看| 7777精品久久久大香线蕉| 欧美久久一区二区| 欧美伦理电影网| 欧美一级在线视频| 日韩精品在线网站| 精品日韩在线一区| 久久一区二区三区四区| 日本一区二区三区四区| 国产精品污网站| 亚洲美女偷拍久久| 一区二区三国产精华液| 亚洲午夜激情网页| 青青草国产成人av片免费| 蜜桃视频在线观看一区| 国产一区二区三区观看| 国产福利91精品一区二区三区| 岛国一区二区三区| 91香蕉视频在线| 欧美放荡的少妇| 久久理论电影网| 中文字幕一区免费在线观看 | 91精品国产综合久久婷婷香蕉 | 亚洲人成网站精品片在线观看| 亚洲一区在线观看视频| 五月婷婷综合网| 国产美女主播视频一区| 一本到不卡精品视频在线观看 | 久久精品人人做| 亚洲乱码日产精品bd| 婷婷国产v国产偷v亚洲高清| 久久精品久久久精品美女| 成人免费视频免费观看| 欧美三级电影网| 国产午夜三级一区二区三| 亚洲视频小说图片| 日韩高清不卡一区二区三区| 成人夜色视频网站在线观看| 欧美自拍偷拍午夜视频| 久久蜜桃av一区精品变态类天堂| 一区二区三区精品视频| 国产一区二三区| 欧美日韩精品免费| 久久久久久97三级| 亚洲福利视频三区| 国产精品99久久久久久有的能看 | 五月天中文字幕一区二区| 国产又黄又大久久| 欧美性生活久久| 亚洲国产精品av| 蜜臀久久久99精品久久久久久| 91婷婷韩国欧美一区二区| 日韩欧美电影一区| 一二三四区精品视频| 日本成人在线一区| 95精品视频在线| 国产精品网友自拍| 免费人成在线不卡| eeuss鲁一区二区三区| 欧美一区二区视频网站| 亚洲啪啪综合av一区二区三区| 久久99国产精品久久99 | 久久精品99国产精品日本| 在线看国产一区| 中文字幕中文字幕一区| 国精产品一区一区三区mba视频| 欧美三电影在线| 亚洲免费观看高清| 成人h动漫精品| 国产三级一区二区三区| 久久精品国产99久久6| 欧美日韩的一区二区| 亚洲伊人色欲综合网| 色诱亚洲精品久久久久久| 国产午夜精品一区二区三区四区| 美国十次综合导航| 欧美一区二区性放荡片| 日韩激情中文字幕| 欧美性一区二区| 亚洲国产另类精品专区| 色综合天天综合网国产成人综合天| 国产精品视频一区二区三区不卡| 久久av老司机精品网站导航| 欧美高清一级片在线| 午夜精品久久久久久| 欧美日韩高清影院| 奇米精品一区二区三区在线观看|