jdk/src/java.base/share/native/libjli/java.h
changeset 36511 9d0388c6b336
parent 33987 24ecd3c83f33
child 37359 4a3768da1851
equal deleted inserted replaced
36510:043f1af70518 36511:9d0388c6b336
   221 int JNICALL JavaMain(void * args); /* entry point                  */
   221 int JNICALL JavaMain(void * args); /* entry point                  */
   222 
   222 
   223 enum LaunchMode {               // cf. sun.launcher.LauncherHelper
   223 enum LaunchMode {               // cf. sun.launcher.LauncherHelper
   224     LM_UNKNOWN = 0,
   224     LM_UNKNOWN = 0,
   225     LM_CLASS,
   225     LM_CLASS,
   226     LM_JAR
   226     LM_JAR,
       
   227     LM_MODULE
   227 };
   228 };
   228 
   229 
   229 static const char *launchModeNames[]
   230 static const char *launchModeNames[]
   230     = { "Unknown", "Main class", "JAR file" };
   231     = { "Unknown", "Main class", "JAR file" };
   231 
   232