⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lcwin.c

📁 用于移动设备上的java虚拟机源代码
💻 C
字号:
/* * @(#)lcWin.c	1.5 02/07/24 @(#) * * Copyright (c) 1999-2002 Sun Microsystems, Inc.  All rights reserved. * PROPRIETARY/CONFIDENTIAL * Use is subject to license terms. */#include <kni.h>#include "defaultLCDUI.h"#include "lcWin.h"extern LcWinMethods getJaWinMethods();LcWinMethodsgetLcWinMethods(char *locale){    if (locale && *locale) {        if (strncmp(locale, "ja", 2) == 0) {            return getJaWinMethods();        }#ifdef LATER        if (strncmp(locale, "ko", 2) == 0) {            return getKoWinMethods();        }        if (strncmp(locale, "zh", 2) == 0) {            return getZhWinMethods();        }#endif    }    return NULL;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -