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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? apisuser32.cs

?? SharpDevelop2.0.0 c#開發(fā)免費(fèi)工具
?? CS
字號:
using System;

namespace System.Runtime.InteropServices.APIs
{
	public class APIsUser32
	{
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern uint SendInput(uint nInputs, APIsStructs.INPUT[] inputs, int cbSize);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool ScreenToClient(IntPtr hWnd, ref APIsStructs.POINTAPI point);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int DrawFrameControl(IntPtr hDc, APIsStructs.RECT rect, APIsEnums.DrawFrameControlFlags nType, APIsEnums.DrawFrameControlStateFlags nState);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int GetSysColor(APIsEnums.SystemColors nIndex);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool DestroyIcon(IntPtr hIcon);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool GetComboBoxInfo(IntPtr hWnd, ref APIsStructs.PCOMBOBOXINFO cbi);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool DestroyWindow(IntPtr hWnd);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern IntPtr GetDC(IntPtr hWnd);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int ReleaseDC(IntPtr hWnd, IntPtr hDC);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern IntPtr GetDesktopWindow();
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool ShowWindow(IntPtr hWnd, APIsEnums.ShowWindowStyles State);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool UpdateWindow(IntPtr hWnd);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool SetForegroundWindow(IntPtr hWnd);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int Width, int Height, uint flags);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool OpenClipboard(IntPtr hWndNewOwner);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool CloseClipboard();
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool EmptyClipboard();
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern IntPtr SetClipboardData( uint Format, IntPtr hData);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool GetMenuItemRect(IntPtr hWnd, IntPtr hMenu, uint Item, ref APIsStructs.RECT rc);
		[DllImport("user32.dll", ExactSpelling=true, CharSet=CharSet.Auto)]
		public static extern IntPtr GetParent(IntPtr hWnd);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern int SendMessage(IntPtr hWnd, APIsEnums.HeaderControlMessages msg, int wParam, ref APIsStructs.HDITEM lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern int SendMessage(IntPtr hWnd, int msg, int wParam, int lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern int SendMessage(IntPtr hWnd, APIsEnums.HeaderControlMessages msg, IntPtr wParam, ref APIsStructs.HD_HITTESTINFO hd_hittestinfo);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern int SendMessage(IntPtr hWnd, APIsEnums.WindowMessages msg, int wParam, int lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr SendMessage(IntPtr hWnd, int msg, int wParam, IntPtr lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern void SendMessage(IntPtr hWnd, int msg, IntPtr wParam, ref APIsStructs.NMHDR lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern void SendMessage(IntPtr hWnd, int msg, IntPtr wParam, ref APIsStructs.NMLVDISPINFO lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern void SendMessage(IntPtr hWnd, int msg, int wParam, ref APIsStructs.RECT lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern int SendMessage(IntPtr hWnd, int msg, int wParam, ref APIsStructs.POINTAPI lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr PostMessage(IntPtr hWnd, int msg, int wParam, int lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr PostMessage(IntPtr hWnd, APIsEnums.WindowMessages msg, int wParam, int lParam);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr SetFocus(IntPtr hWnd);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public extern static int DrawText(IntPtr hdc, string lpString, int nCount, ref APIsStructs.RECT lpRect, APIsEnums.DrawTextFormatFlags flags);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public extern static IntPtr SetParent(IntPtr hChild, IntPtr hParent);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public extern static IntPtr GetDlgItem(IntPtr hDlg, int nControlID);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public extern static int GetClientRect(IntPtr hWnd, ref APIsStructs.RECT rc);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public extern static int InvalidateRect(IntPtr hWnd,  ref APIsStructs.RECT rc, int bErase);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		public extern static int InvalidateRect(IntPtr hWnd,  IntPtr rc, int bErase);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool WaitMessage();
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool PeekMessage(ref APIsStructs.MSG msg, int hWnd, uint wFilterMin, uint wFilterMax, APIsEnums.PeekMessageFlags flags);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool GetMessage(ref APIsStructs.MSG msg, int hWnd, uint wFilterMin, uint wFilterMax);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool TranslateMessage(ref APIsStructs.MSG msg);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool DispatchMessage(ref APIsStructs.MSG msg);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr LoadCursor(IntPtr hInstance, APIsEnums.CursorTypes cursor);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr SetCursor(IntPtr hCursor);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr GetFocus();
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool ReleaseCapture();
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr SetCapture(IntPtr hWnd);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr BeginPaint(IntPtr hWnd, ref APIsStructs.PAINTSTRUCT ps);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool EndPaint(IntPtr hWnd, ref APIsStructs.PAINTSTRUCT ps);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool UpdateLayeredWindow(IntPtr hwnd, IntPtr hdcDst, ref APIsStructs.POINTAPI pptDst, ref APIsStructs.SIZE psize, 
			IntPtr hdcSrc, ref APIsStructs.POINTAPI pprSrc, Int32 crKey, ref APIsStructs.BLENDFUNCTION pblend, APIsEnums.UpdateLayeredWindowFlags dwFlags);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool GetWindowRect(IntPtr hWnd, ref APIsStructs.RECT rect);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool ClientToScreen(IntPtr hWnd, ref APIsStructs.POINTAPI pt);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool TrackMouseEvent(ref APIsStructs.TRACKMOUSEEVENTS tme);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool SetWindowRgn(IntPtr hWnd, IntPtr hRgn, bool redraw);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern ushort GetKeyState(int virtKey);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern bool MoveWindow(IntPtr hWnd, int x, int y, int width, int height, bool repaint);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern int GetClassName(IntPtr hWnd, System.Text.StringBuilder ClassName, int nMaxCount);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr GetDCEx(IntPtr hWnd, IntPtr hRegion, uint flags);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern IntPtr GetWindowDC(IntPtr hWnd);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern int FillRect(IntPtr hDC, ref APIsStructs.RECT rect, IntPtr hBrush);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern int GetWindowPlacement(IntPtr hWnd, ref APIsStructs.WINDOWPLACEMENT wp);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern int SetWindowText(IntPtr hWnd, string text);
		[DllImport("User32.dll", CharSet=CharSet.Auto)]
		public static extern int GetWindowText(IntPtr hWnd, System.Text.StringBuilder text, int maxCount);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int SendMessage(IntPtr hWnd, int Msg, IntPtr wParam, IntPtr lParam); 
		[DllImport("user32.dll", CharSet=CharSet.Auto)] 
		static public extern IntPtr SetClipboardViewer(IntPtr hWndNewViewer); 
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int ChangeClipboardChain(IntPtr hWndRemove, IntPtr hWndNewNext);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int GetSystemMetrics(APIsEnums.SystemMetricsCodes code);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int SetScrollInfo(IntPtr hwnd,  int bar, ref APIsStructs.SCROLLINFO si, int fRedraw);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int ShowScrollBar(IntPtr hWnd, int bar,  int show);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int EnableScrollBar(IntPtr hWnd, uint flags, uint arrows);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int BringWindowToTop(IntPtr hWnd);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int GetScrollInfo(IntPtr hwnd, int bar, ref APIsStructs.SCROLLINFO si);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int ScrollWindowEx(IntPtr hWnd, int dx, int dy, 
			ref APIsStructs.RECT rcScroll, ref APIsStructs.RECT rcClip, IntPtr UpdateRegion, ref APIsStructs.RECT rcInvalidated, uint flags);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool IsWindow(IntPtr hWnd);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int LockWindowUpdate(IntPtr hWnd);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool ValidateRect(IntPtr hWnd, ref APIsStructs.RECT rcInvalidated);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern bool ValidateRect(IntPtr hWnd, IntPtr rc);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int GetScrollBarInfo(IntPtr hWnd, APIsEnums.SystemObjects id, ref APIsStructs.SCROLLBARINFO sbi);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int SetProp(IntPtr hWnd, IntPtr atom, IntPtr hData);
		[DllImport("user32.dll", CharSet=CharSet.Auto)]
		static public extern int CallWindowProc(IntPtr hOldProc, IntPtr hWnd, uint message, int wParam, int lParam);
		[DllImport("user32.dll")]
		public static extern bool SendMessage(IntPtr hWnd, APIsEnums.ListViewMessages msg,
			Int32 wParam, ref APIsStructs.LV_ITEM lParam);
		[DllImport("user32.dll")]
		public static extern int SendMessage(IntPtr hWnd, Int32 msg, Int32 wParam, ref 
			APIsStructs.LVHITTESTINFO lParam);
		[DllImport("user32.dll")]
		public static extern bool SendMessage(IntPtr hWnd, int msg,
			IntPtr wParam, ref IntPtr lParam);
	}
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产激情视频一区二区三区欧美 | 国产精品日韩精品欧美在线| 蜜臀av一级做a爰片久久| 欧美日韩一区中文字幕| 亚洲成人精品影院| 69av一区二区三区| 蜜桃一区二区三区四区| 欧美电影免费提供在线观看| av电影天堂一区二区在线| 欧美国产一区在线| 91美女蜜桃在线| 亚洲一二三级电影| 欧美成人欧美edvon| 国产乱色国产精品免费视频| 国产精品你懂的在线欣赏| 国产成人综合在线| 中文子幕无线码一区tr| 欧美中文字幕久久| 美女网站视频久久| 中文字幕乱码一区二区免费| 一本久道久久综合中文字幕| 天天av天天翘天天综合网色鬼国产 | 不卡在线观看av| 亚洲美女区一区| 欧美一二三四在线| fc2成人免费人成在线观看播放| 亚洲视频一二区| 欧美一区二区精美| 国产福利91精品一区| 夜夜嗨av一区二区三区网页 | 不卡的av在线播放| 五月天激情综合| 久久精品日产第一区二区三区高清版| 成人精品免费看| 国产精品天干天干在线综合| 一本久道中文字幕精品亚洲嫩| 亚洲成人免费av| 久久久精品人体av艺术| 色8久久精品久久久久久蜜| 日本不卡中文字幕| 国产精品久久久久毛片软件| 欧美日韩一区视频| 成人午夜电影小说| 免费观看30秒视频久久| 亚洲男人的天堂在线观看| 日韩精品一区二区三区在线观看| 99热精品一区二区| 三级久久三级久久久| 亚洲欧美一区二区久久| 久久亚区不卡日本| 91精品国产91热久久久做人人 | 国产亚洲一区二区三区在线观看| 色94色欧美sute亚洲线路二| 国产精品69毛片高清亚洲| 91美女片黄在线观看| 亚洲视频一区二区在线观看| 精品国内二区三区| 欧美日韩国产首页在线观看| 91欧美一区二区| 成人午夜免费电影| 国产精品69久久久久水密桃| 久久电影国产免费久久电影| 亚洲va天堂va国产va久| 一卡二卡欧美日韩| 中文字幕日韩一区二区| 国产日韩一级二级三级| 精品电影一区二区| 欧美成人女星排名| 日韩一区二区三区免费看| 欧美日韩亚洲综合在线| 91福利在线免费观看| 97精品久久久午夜一区二区三区| 国产91精品入口| 国产精品一区二区果冻传媒| 国产自产高清不卡| 免费成人在线观看| 麻豆成人久久精品二区三区红| 日日嗨av一区二区三区四区| 日韩精品每日更新| 日本v片在线高清不卡在线观看| 日韩激情av在线| 日韩一区二区三免费高清| 欧美精品粉嫩高潮一区二区| 欧美无砖专区一中文字| 欧美三级电影网| 91.麻豆视频| 日韩午夜在线播放| 精品久久久久99| 久久久国产精品午夜一区ai换脸| 久久欧美一区二区| 国产欧美1区2区3区| 亚洲欧洲美洲综合色网| 亚洲嫩草精品久久| 丝袜a∨在线一区二区三区不卡| 丝袜诱惑制服诱惑色一区在线观看| 三级欧美在线一区| 国产一区二区三区久久久| 国产高清不卡一区二区| av资源网一区| 欧洲av在线精品| 91精品国产综合久久久蜜臀粉嫩| 91精品国产综合久久久蜜臀粉嫩| 日韩精品专区在线影院重磅| 久久久久久一二三区| 亚洲欧洲精品天堂一级| 亚洲资源在线观看| 久久国产福利国产秒拍| 成人亚洲一区二区一| 色婷婷综合五月| 欧美一区二区三区人| 亚洲美女精品一区| 日韩精品一级二级| 国产**成人网毛片九色| 欧美性猛交一区二区三区精品| 日韩亚洲电影在线| 国产精品久久久久7777按摩 | 777奇米四色成人影色区| 精品国产伦一区二区三区观看体验 | 日韩精品一区二区三区中文精品| 国产亚洲一区二区在线观看| 亚洲综合色成人| 国产伦精品一区二区三区视频青涩| 成年人网站91| 91精品国产高清一区二区三区 | 青青国产91久久久久久| 成人性生交大片免费看中文| 欧美性感一区二区三区| 久久久亚洲高清| 亚洲午夜久久久久久久久电影网 | 国产精品亚洲一区二区三区妖精 | 同产精品九九九| 成人精品视频一区二区三区尤物| 欧美色中文字幕| 国产欧美一区二区精品忘忧草| 午夜久久久久久电影| 不卡的电视剧免费网站有什么| 欧美一区二区在线播放| 国产精品热久久久久夜色精品三区| 亚洲国产另类精品专区| 成人亚洲精品久久久久软件| 欧美一区二区视频观看视频| 自拍偷拍亚洲激情| 欧美女孩性生活视频| 久久久影院官网| 日韩高清中文字幕一区| 99久久婷婷国产| 国产亚洲综合在线| 久久精品国产亚洲高清剧情介绍| 日本精品免费观看高清观看| 国产欧美一区二区在线观看| 免费在线看成人av| 欧美男女性生活在线直播观看| 日韩一区在线播放| 国产电影精品久久禁18| 日韩一区二区影院| 亚洲成人激情综合网| 色94色欧美sute亚洲线路一ni| 欧美激情综合在线| 国产真实乱对白精彩久久| 日韩视频国产视频| 免费久久精品视频| 欧美久久高跟鞋激| 波多野洁衣一区| 国产精品久久久久影院亚瑟| 亚洲电影激情视频网站| 成人av中文字幕| 久久久精品黄色| 国产一区视频在线看| 精品免费视频.| 黄页网站大全一区二区| 日韩欧美电影一区| 日韩av一区二| 91麻豆精品国产91久久久| 偷拍亚洲欧洲综合| 91.com在线观看| 免费久久99精品国产| 日韩欧美国产不卡| 久久精品99国产国产精| 26uuu精品一区二区在线观看| 久久国产欧美日韩精品| 精品国产电影一区二区| 国产精品一区二区在线播放| 久久久精品国产免大香伊| 国产成人免费视频精品含羞草妖精| 久久久久久夜精品精品免费| 国产麻豆9l精品三级站| 国产精品进线69影院| 色综合网站在线| 亚洲一二三四在线| 亚洲摸摸操操av| 93久久精品日日躁夜夜躁欧美| 亚洲同性同志一二三专区| 色噜噜狠狠色综合中国| 午夜精品久久久久久久蜜桃app| 91精品国产乱| 国产福利一区二区| 亚洲一区在线免费观看| 欧美一级片免费看| 丰满放荡岳乱妇91ww| 亚洲精品午夜久久久|