< prev index next >

src/java.base/share/native/launcher/defines.h

Print this page




  39 /* make sure the compilation fails */
  40 #error "VERSION_STRING must be defined"
  41 #endif
  42 
  43 /* Unused, but retained for JLI_Launch compatibility*/
  44 #define DOT_VERSION "0.0"
  45 
  46 #ifdef JAVA_ARGS
  47 #ifdef PROGNAME
  48 static const char* const_progname = PROGNAME;
  49 #else
  50 static char* const_progname = NULL;
  51 #endif
  52 static const char* const_jargs[] = JAVA_ARGS;
  53 #ifdef EXTRA_JAVA_ARGS
  54 static const char* const_extra_jargs[] = EXTRA_JAVA_ARGS;
  55 #else
  56 static const char** const_extra_jargs = NULL;
  57 #endif
  58 #else  /* !JAVA_ARGS */



  59 static const char* const_progname = "java";
  60 static const char** const_jargs = NULL;
  61 static const char** const_extra_jargs = NULL;
  62 static const char* const_appclasspath[] = { NULL };
  63 #endif /* JAVA_ARGS */
  64 
  65 #ifdef LAUNCHER_NAME
  66 static const char* const_launcher = LAUNCHER_NAME;
  67 #else  /* LAUNCHER_NAME */
  68 static char* const_launcher = NULL;
  69 #endif /* LAUNCHER_NAME */
  70 
  71 #ifdef EXPAND_CLASSPATH_WILDCARDS
  72 static const jboolean const_cpwildcard = JNI_TRUE;
  73 #else
  74 static const jboolean const_cpwildcard = JNI_FALSE;
  75 #endif /* EXPAND_CLASSPATH_WILDCARDS */
  76 
  77 #ifdef ENABLE_ARG_FILES
  78 static const jboolean const_disable_argfile = JNI_FALSE;


  39 /* make sure the compilation fails */
  40 #error "VERSION_STRING must be defined"
  41 #endif
  42 
  43 /* Unused, but retained for JLI_Launch compatibility*/
  44 #define DOT_VERSION "0.0"
  45 
  46 #ifdef JAVA_ARGS
  47 #ifdef PROGNAME
  48 static const char* const_progname = PROGNAME;
  49 #else
  50 static char* const_progname = NULL;
  51 #endif
  52 static const char* const_jargs[] = JAVA_ARGS;
  53 #ifdef EXTRA_JAVA_ARGS
  54 static const char* const_extra_jargs[] = EXTRA_JAVA_ARGS;
  55 #else
  56 static const char** const_extra_jargs = NULL;
  57 #endif
  58 #else  /* !JAVA_ARGS */
  59 #ifdef EXTRA_JAVA_ARGS
  60 #error "EXTRA_JAVA_ARGS defined without JAVA_ARGS"
  61 #endif
  62 static const char* const_progname = "java";
  63 static const char** const_jargs = NULL;
  64 static const char** const_extra_jargs = NULL;
  65 static const char* const_appclasspath[] = { NULL };
  66 #endif /* JAVA_ARGS */
  67 
  68 #ifdef LAUNCHER_NAME
  69 static const char* const_launcher = LAUNCHER_NAME;
  70 #else  /* LAUNCHER_NAME */
  71 static char* const_launcher = NULL;
  72 #endif /* LAUNCHER_NAME */
  73 
  74 #ifdef EXPAND_CLASSPATH_WILDCARDS
  75 static const jboolean const_cpwildcard = JNI_TRUE;
  76 #else
  77 static const jboolean const_cpwildcard = JNI_FALSE;
  78 #endif /* EXPAND_CLASSPATH_WILDCARDS */
  79 
  80 #ifdef ENABLE_ARG_FILES
  81 static const jboolean const_disable_argfile = JNI_FALSE;
< prev index next >