📄 lcwin.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 + -