📄 java_md.h
字号:
/* * @(#)java_md.h 1.8 01/12/03 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */#ifndef JAVA_MD_H#define JAVA_MD_H#include <windows.h>#define PATH_SEPARATOR ';'#define FILE_SEPARATOR '\\'#define MAXPATHLEN MAX_PATH#ifdef JAVA_ARGS/* * ApplicationHome is prepended to each of these entries; the resulting * strings are concatenated (seperated by PATH_SEPARATOR) and used as the * value of -cp option to the launcher. */#ifndef APP_CLASSPATH#define APP_CLASSPATH { "\\lib\\tools.jar", "\\classes" }#endif#endif/* * Support for doing cheap, accurate interval timing. */extern jlong CounterGet(void);extern jlong Counter2Micros(jlong counts);#ifdef JAVAW#define main _mainextern int _main(int argc, char **argv);#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -