lcwin.c

来自「用于移动设备上的java虚拟机源代码」· C语言 代码 · 共 33 行

C
33
字号
/* * @(#)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 + =
减小字号Ctrl + -
显示快捷键?