< prev index next >

src/java.base/windows/native/libjli/java_md.h

Print this page




  37 #define FILE_SEPARATOR  '\\'
  38 #define IS_FILE_SEPARATOR(c) ((c) == '\\' || (c) == '/')
  39 #define MAXPATHLEN      MAX_PATH
  40 #define MAXNAMELEN      MAX_PATH
  41 
  42 #define JLONG_FORMAT_SPECIFIER "%I64d"
  43 
  44 /*
  45  * Support for doing cheap, accurate interval timing.
  46  */
  47 extern jlong CounterGet(void);
  48 extern jlong Counter2Micros(jlong counts);
  49 
  50 
  51 /*
  52  * Function prototypes.
  53  */
  54 
  55 int UnsetEnv(char *name);
  56 



  57 #endif /* JAVA_MD_H */


  37 #define FILE_SEPARATOR  '\\'
  38 #define IS_FILE_SEPARATOR(c) ((c) == '\\' || (c) == '/')
  39 #define MAXPATHLEN      MAX_PATH
  40 #define MAXNAMELEN      MAX_PATH
  41 
  42 #define JLONG_FORMAT_SPECIFIER "%I64d"
  43 
  44 /*
  45  * Support for doing cheap, accurate interval timing.
  46  */
  47 extern jlong CounterGet(void);
  48 extern jlong Counter2Micros(jlong counts);
  49 
  50 
  51 /*
  52  * Function prototypes.
  53  */
  54 
  55 int UnsetEnv(char *name);
  56 
  57 jboolean
  58 GetApplicationHomeFromDll(char *buf, jint bufsize);
  59 
  60 #endif /* JAVA_MD_H */
< prev index next >