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

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

?? os.java

?? 源碼為Eclipse開源開發(fā)平臺桌面開發(fā)工具SWT的源代碼,
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
/******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html *  * Contributors: *     IBM Corporation - initial API and implementation *******************************************************************************/package org.eclipse.swt.internal.win32;import org.eclipse.swt.internal.*;public class OS {	static {		Library.loadLibrary ("swt"); //$NON-NLS-1$	}		/*	* SWT Windows flags	*/	public static final boolean IsWin32s;	public static final boolean IsWin95;	public static final boolean IsWinNT;	public static final boolean IsWinCE;	public static final boolean IsPPC;	public static final boolean IsHPC;	public static final boolean IsSP;	public static final boolean IsDBLocale;	public static final boolean IsUnicode;	public static final int WIN32_MAJOR, WIN32_MINOR;	public static final int COMCTL32_MAJOR, COMCTL32_MINOR;	public static final int SHELL32_MAJOR, SHELL32_MINOR;	/*	* Flags for Window API GetVersionEx()	*/	public static final int VER_PLATFORM_WIN32s = 0;	public static final int VER_PLATFORM_WIN32_WINDOWS = 1;	public static final int VER_PLATFORM_WIN32_NT = 2;	public static final int VER_PLATFORM_WIN32_CE = 3;		/* Get the Windows version and the flags */	static {		/*		* Try the UNICODE version of GetVersionEx first		* and then the ANSI version.  The UNICODE version		* is present on all versions of Windows but is not		* implemented on Win95/98/ME.		* 		* NOTE: The value of OSVERSIONINFO.sizeof cannot		* be static final because it relies on the Windows		* platform version to be initialized and IsUnicode		* has not been calculated.  It must be initialized		* here, after the platform is determined in order		* for the value to be correct.		*/		OSVERSIONINFO info = new OSVERSIONINFOW ();		info.dwOSVersionInfoSize = OSVERSIONINFOW.sizeof;		if (!OS.GetVersionExW ((OSVERSIONINFOW)info)) {			info = new OSVERSIONINFOA ();			info.dwOSVersionInfoSize = OSVERSIONINFOA.sizeof;			OS.GetVersionExA ((OSVERSIONINFOA)info);		}		OSVERSIONINFO.sizeof = info.dwOSVersionInfoSize;				IsWin32s = info.dwPlatformId == VER_PLATFORM_WIN32s;		IsWin95 = info.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS;		IsWinNT = info.dwPlatformId == VER_PLATFORM_WIN32_NT;		IsWinCE = info.dwPlatformId == VER_PLATFORM_WIN32_CE;		IsSP = IsSP();		IsPPC = IsPPC();		IsHPC = IsWinCE && !IsPPC && !IsSP;			WIN32_MAJOR = info.dwMajorVersion;		WIN32_MINOR = info.dwMinorVersion;		IsUnicode = !IsWin32s && !IsWin95;		/* Get the DBCS flag */		int index = 0;		while (index <= 0xFF) {			if (OS.IsDBCSLeadByte ((byte) index)) break;			index++;		}		IsDBLocale = index <= 0xFF;	}		/* Get the COMCTL32.DLL version */	static {		DLLVERSIONINFO dvi = new DLLVERSIONINFO ();		dvi.cbSize = DLLVERSIONINFO.sizeof;		dvi.dwMajorVersion = 4;		dvi.dwMinorVersion = 0;		TCHAR lpLibFileName = new TCHAR (0, "comctl32.dll", true); //$NON-NLS-1$		int hModule = OS.LoadLibrary (lpLibFileName);		if (hModule != 0) {			String name = "DllGetVersion\0"; //$NON-NLS-1$			byte [] lpProcName = new byte [name.length ()];			for (int i=0; i<lpProcName.length; i++) {				lpProcName [i] = (byte) name.charAt (i);			}			int DllGetVersion = OS.GetProcAddress (hModule, lpProcName);			if (DllGetVersion != 0) OS.Call (DllGetVersion, dvi);			OS.FreeLibrary (hModule);		}		COMCTL32_MAJOR = dvi.dwMajorVersion;		COMCTL32_MINOR = dvi.dwMinorVersion;	}		/* Get the Shell32.DLL version */	static {		DLLVERSIONINFO dvi = new DLLVERSIONINFO ();		dvi.cbSize = DLLVERSIONINFO.sizeof;		dvi.dwMajorVersion = 4;		TCHAR lpLibFileName = new TCHAR (0, "Shell32.dll", true); //$NON-NLS-1$		int hModule = OS.LoadLibrary (lpLibFileName);		if (hModule != 0) {			String name = "DllGetVersion\0"; //$NON-NLS-1$			byte [] lpProcName = new byte [name.length ()];			for (int i=0; i<lpProcName.length; i++) {				lpProcName [i] = (byte) name.charAt (i);			}			int DllGetVersion = OS.GetProcAddress (hModule, lpProcName);			if (DllGetVersion != 0) OS.Call (DllGetVersion, dvi);			OS.FreeLibrary (hModule);		}		SHELL32_MAJOR = dvi.dwMajorVersion;		SHELL32_MINOR = dvi.dwMinorVersion;	}	/* Flag used on WinCE */	static final int SYS_COLOR_INDEX_FLAG = OS.IsWinCE ? 0x40000000 : 0x0;	/*	* NOTE:  There is a bug in JVM 1.2 where loading 	* a class with a large number of constants causes	* a segment fault to occur sometime later after	* the class is loaded.  The fix is to break the	* class up into a hierarchy of classes that each	* contain a smaller number of constants.  This	* fix is not necessary at this time but is required	* when all constants are uncommented.  We have not	* done the research to determine the limit.	*/	/* Constants */	public static final int ALTERNATE = 1;	public static final int BFFM_INITIALIZED = 0x1;	public static final int BFFM_SETSELECTION = IsUnicode ? 0x467 : 0x466;	public static final int BFFM_VALIDATEFAILED = IsUnicode ? 0x4 : 0x3;	public static final int BFFM_VALIDATEFAILEDW = 0x4;	public static final int BFFM_VALIDATEFAILEDA = 0x3;	public static final int BF_BOTTOM = 0x8;	public static final int BF_RIGHT = 0x4;	public static final int BIF_EDITBOX = 0x10;	public static final int BIF_NEWDIALOGSTYLE = 0x40;	public static final int BIF_RETURNONLYFSDIRS = 0x1;	public static final int BIF_VALIDATE = 0x20;	public static final int BITSPIXEL = 0xc;	public static final int BI_BITFIELDS = 3;	public static final int BI_RGB = 0;	public static final int BLACKNESS = 0x42;	public static final int BM_CLICK = 0xf5;	public static final int BM_GETCHECK = 0xf0;	public static final int BM_SETCHECK = 0xf1;	public static final int BM_SETIMAGE = 0xf7;	public static final int BM_SETSTYLE = 0xf4;	public static final int BN_CLICKED = 0x0;	public static final int BN_DOUBLECLICKED = 0x5;	public static final int BST_CHECKED = 0x1;	public static final int BST_UNCHECKED = 0x0;	public static final int BS_BITMAP = 0x80;	public static final int BS_CENTER = 0x300;	public static final int BS_CHECKBOX = 0x2;	public static final int BS_DEFPUSHBUTTON = 0x1;	public static final int BS_FLAT = 0x8000;	public static final int BS_GROUPBOX = 0x7;	public static final int BS_ICON = 0x40;	public static final int BS_LEFT = 0x100;	public static final int BS_NOTIFY = 0x4000;	public static final int BS_OWNERDRAW = 0xb;	public static final int BS_PUSHBUTTON = 0x0;	public static final int BS_PUSHLIKE = 0x1000;	public static final int BS_RADIOBUTTON = 0x4;	public static final int BS_RIGHT = 0x200;	public static final int BS_SOLID = 0x0;	public static final int BTNS_AUTOSIZE = 0x10;	public static final int BTNS_BUTTON = 0x0;	public static final int BTNS_CHECK = 0x2;	public static final int BTNS_CHECKGROUP = 0x6;	public static final int BTNS_DROPDOWN = 0x8;	public static final int BTNS_GROUP = 0x4;	public static final int BTNS_SEP = 0x1;	public static final int BTNS_SHOWTEXT = 0x40;	public static final int CBN_EDITCHANGE = 0x5;	public static final int CBN_KILLFOCUS = 0x4;	public static final int CBN_SELCHANGE = 0x1;	public static final int CBN_SETFOCUS = 0x3;	public static final int CBS_AUTOHSCROLL = 0x40;	public static final int CBS_DROPDOWN = 0x2;	public static final int CBS_DROPDOWNLIST = 0x3;	public static final int CBS_NOINTEGRALHEIGHT = 0x400;	public static final int CBS_SIMPLE = 0x1;	public static final int CB_ADDSTRING = 0x143;	public static final int CB_DELETESTRING = 0x144;	public static final int CB_ERR = 0xffffffff;	public static final int CB_ERRSPACE = 0xfffffffe;	public static final int CB_FINDSTRINGEXACT = 0x158;	public static final int CB_GETCOUNT = 0x146;	public static final int CB_GETCURSEL = 0x147;	public static final int CB_GETDROPPEDCONTROLRECT = 0x152;	public static final int CB_GETDROPPEDSTATE = 0x157;	public static final int CB_GETEDITSEL = 0x140;	public static final int CB_GETITEMHEIGHT = 0x154;	public static final int CB_GETLBTEXT = 0x148;	public static final int CB_GETLBTEXTLEN = 0x149;	public static final int CB_INSERTSTRING = 0x14a;	public static final int CB_LIMITTEXT = 0x141;	public static final int CB_RESETCONTENT = 0x14b;	public static final int CB_SELECTSTRING = 0x14d;	public static final int CB_SETCURSEL = 0x14e;	public static final int CB_SETEDITSEL = 0x142;	public static final int CB_SHOWDROPDOWN = 0x14f;	public static final int CCM_FIRST = 0x2000;	public static final int CCM_SETBKCOLOR = 0x2001;	public static final int CCM_SETVERSION = 0x2007;	public static final int CCS_NODIVIDER = 0x40;	public static final int CCS_NORESIZE = 0x4;	public static final int CC_ANYCOLOR = 0x100;	public static final int CC_ENABLEHOOK = 0x10;	public static final int CC_RGBINIT = 0x1;	public static final int CDDS_POSTERASE = 0x00000004;	public static final int CDDS_PREERASE = 0x00000003;	public static final int CDDS_PREPAINT = 0x00000001;	public static final int CDDS_ITEM = 0x00010000;	public static final int CDDS_ITEMPREPAINT = CDDS_ITEM | CDDS_PREPAINT;	public static final int CDDS_SUBITEM = 0x00020000;	public static final int CDRF_DODEFAULT = 0x00000000;	public static final int CDRF_NEWFONT = 0x00000002;	public static final int CDRF_NOTIFYITEMDRAW = 0x00000020;	public static final int CDRF_NOTIFYPOSTERASE = 0x00000040;	public static final int CDRF_NOTIFYSUBITEMDRAW = 0x00000020;	public static final int CFE_AUTOCOLOR = 0x40000000;	public static final int CFE_ITALIC = 0x2;	public static final int CFE_STRIKEOUT = 0x8;	public static final int CFE_UNDERLINE = 0x4;	public static final int CFM_BOLD = 0x1;	public static final int CFM_CHARSET = 0x8000000;	public static final int CFM_COLOR = 0x40000000;	public static final int CFM_FACE = 0x20000000;	public static final int CFM_ITALIC = 0x2;	public static final int CFM_SIZE = 0x80000000;	public static final int CFM_STRIKEOUT = 0x8;	public static final int CFM_UNDERLINE = 0x4;	public static final int CFM_WEIGHT = 0x400000;	public static final int CFS_POINT = 0x2;	public static final int CF_EFFECTS = 0x100;	public static final int CF_INITTOLOGFONTSTRUCT = 0x40;	public static final int CF_SCREENFONTS = 0x1;	public static final int CF_TEXT = 0x1;	public static final int CF_UNICODETEXT = 13;	public static final int CF_USESTYLE = 0x80;	public static final int CLR_DEFAULT = 0xff000000;	public static final int CLR_INVALID = 0xffffffff;	public static final int COLORONCOLOR = 0x3;	public static final int COLOR_3DDKSHADOW = 0x15 | SYS_COLOR_INDEX_FLAG;	public static final int COLOR_3DFACE = 0xf | SYS_COLOR_INDEX_FLAG;	public static final int COLOR_3DHIGHLIGHT = 0x14 | SYS_COLOR_INDEX_FLAG;	public static final int COLOR_3DHILIGHT = 0x14 | SYS_COLOR_INDEX_FLAG;	public static final int COLOR_3DLIGHT = 0x16 | SYS_COLOR_INDEX_FLAG;	public static final int COLOR_3DSHADOW = 0x10 | SYS_COLOR_INDEX_FLAG;	public static final int COLOR_ACTIVECAPTION = 0x2 | SYS_COLOR_INDEX_FLAG;	public static final int COLOR_BTNFACE = 0xf | SYS_COLOR_INDEX_FLAG;	public static final int COLOR_BTNHIGHLIGHT = 0x14 | SYS_COLOR_INDEX_FLAG;	public static final int COLOR_BTNSHADOW = 0x10 | SYS_COLOR_INDEX_FLAG;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲婷婷在线视频| 国产精品白丝jk白祙喷水网站| 日本不卡一区二区| 懂色一区二区三区免费观看| 欧美日韩的一区二区| 国产精品麻豆久久久| 精品一区二区三区欧美| 欧美日韩一区二区在线观看视频| 国产欧美综合在线| 久久精品国产第一区二区三区| 91成人免费网站| 中文字幕 久热精品 视频在线| 奇米在线7777在线精品| 91福利在线导航| 国产精品视频第一区| 国产一区二区视频在线| 欧美一级黄色录像| 日本欧美肥老太交大片| 欧美亚洲另类激情小说| 亚洲另类色综合网站| www.66久久| 国产精品夫妻自拍| 国产宾馆实践打屁股91| 久久久综合网站| 国产在线视频不卡二| 精品少妇一区二区三区| 久久精品国产亚洲aⅴ| 日韩一区二区视频在线观看| 日韩精品一区第一页| 欧洲一区二区三区在线| 一个色综合av| 欧美三级日韩在线| 爽好久久久欧美精品| 538在线一区二区精品国产| 丝袜美腿亚洲一区| 91精品国产欧美日韩| 久久精品国产亚洲高清剧情介绍| 欧美大片在线观看一区二区| 精品一区二区在线观看| 久久综合色一综合色88| 国产精品99久久久久久有的能看| 久久精品亚洲麻豆av一区二区| 国产精品一区二区在线看| 2023国产精品自拍| 成人在线综合网| 依依成人精品视频| 欧美精品vⅰdeose4hd| 久久国产日韩欧美精品| 久久久国际精品| 91丨porny丨蝌蚪视频| 亚洲国产综合91精品麻豆| 在线综合视频播放| 国产精品一区一区| 伊人性伊人情综合网| 欧美一级午夜免费电影| 国产成人精品亚洲777人妖 | 精品欧美一区二区在线观看| 精品无码三级在线观看视频| 国产亚洲精品超碰| 日本韩国一区二区| 日韩av一级片| 中文字幕一区二区三区在线观看| 一本大道久久a久久精二百| 视频一区二区三区在线| 久久久久久久久一| 欧美在线免费观看视频| 韩国视频一区二区| 亚洲精品成人天堂一二三| 欧美一区二区在线不卡| 成人av综合一区| 日韩vs国产vs欧美| 国产精品久久久久久久久搜平片 | 亚洲综合在线第一页| 日韩情涩欧美日韩视频| 成人av网站在线观看| 日韩国产精品大片| 自拍偷拍国产精品| 精品久久久三级丝袜| 日本高清不卡aⅴ免费网站| 久久99久久久久| 亚洲自拍另类综合| 欧美激情一区二区三区不卡| 91超碰这里只有精品国产| eeuss鲁一区二区三区| 久久99精品国产麻豆婷婷| 一区二区免费在线播放| 中文无字幕一区二区三区| 欧美一卡二卡三卡四卡| 91黄色免费网站| 国产精品一区二区免费不卡| 视频一区视频二区中文字幕| 国产精品初高中害羞小美女文| 欧美大片日本大片免费观看| 在线观看精品一区| 不卡的电影网站| 国产精品一区在线观看你懂的| 视频在线在亚洲| 亚洲综合自拍偷拍| 亚洲人成伊人成综合网小说| 欧美激情在线一区二区| 久久人人97超碰com| 日韩限制级电影在线观看| 91久久久免费一区二区| 91丨九色porny丨蝌蚪| www.欧美亚洲| jlzzjlzz国产精品久久| 欧美男人的天堂一二区| 色狠狠综合天天综合综合| 成人午夜短视频| 国产精品一级在线| 国产乱码精品1区2区3区| 精品一区二区三区视频| 黄色精品一二区| 国精产品一区一区三区mba桃花 | 亚洲一区二区四区蜜桃| 亚洲视频在线一区| 亚洲啪啪综合av一区二区三区| 中文子幕无线码一区tr| 一区在线观看视频| 成人免费在线播放视频| 亚洲精品久久久蜜桃| 亚洲欧美色综合| 亚洲成人午夜影院| 午夜精品成人在线| 日本不卡视频一二三区| 久久99热99| 成人av资源下载| 色噜噜狠狠色综合欧洲selulu| 色视频欧美一区二区三区| 欧美视频日韩视频在线观看| 欧美区视频在线观看| 337p粉嫩大胆色噜噜噜噜亚洲| 欧美精品一区二区三区在线| 国产免费成人在线视频| 亚洲日本免费电影| 五月综合激情婷婷六月色窝| 麻豆精品久久精品色综合| 国产东北露脸精品视频| 91碰在线视频| 欧美一区二区三区影视| 国产调教视频一区| 亚洲一区二区四区蜜桃| 久久成人久久爱| 99精品偷自拍| 91精品午夜视频| 日本一区二区成人| 亚洲精选视频免费看| 日韩高清电影一区| 懂色av一区二区三区蜜臀| 色欧美乱欧美15图片| 欧美成人一区二区三区| 综合分类小说区另类春色亚洲小说欧美| 亚洲成人免费视频| 国产九九视频一区二区三区| 91精彩视频在线观看| 欧美一级片免费看| 日韩美女啊v在线免费观看| 日本va欧美va欧美va精品| 成人性生交大片免费看中文| 欧美日韩极品在线观看一区| 国产日韩av一区二区| 舔着乳尖日韩一区| 91在线视频官网| www精品美女久久久tv| 亚洲高清在线精品| 99热99精品| 久久伊人蜜桃av一区二区| 五月婷婷综合激情| 91麻豆国产在线观看| 久久久久久9999| 天天色综合成人网| 色婷婷久久久综合中文字幕| 久久亚洲一区二区三区明星换脸 | 亚洲成人综合在线| av电影在线观看一区| 久久综合九色综合97婷婷女人| 亚洲自拍偷拍九九九| 9久草视频在线视频精品| 久久午夜色播影院免费高清| 五月综合激情日本mⅴ| 欧美日韩一卡二卡三卡| 亚洲丝袜另类动漫二区| 国产大陆精品国产| 亚洲精品一区二区三区99| 日本伊人精品一区二区三区观看方式| 色综合久久天天综合网| 亚洲国产精品v| 国产成人精品免费| 欧美精品一区二区三区在线播放 | 亚洲美女视频在线观看| 成人午夜视频免费看| 国产日韩欧美a| 国产成人亚洲综合a∨猫咪| 精品国一区二区三区| 麻豆91精品视频| 欧美日韩精品一区二区在线播放| 亚洲精品菠萝久久久久久久| 91在线观看地址| 一区二区三区91| 欧美在线一区二区|