home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / main.bin / path_md.h < prev    next >
C/C++ Source or Header  |  1997-11-24  |  2KB  |  53 lines

  1. /*
  2.  * @(#)path_md.h    1.9 96/11/23
  3.  * 
  4.  * Copyright (c) 1995, 1996 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  * CopyrightVersion 1.1_beta
  20.  * 
  21.  */
  22.  
  23. /*-
  24.  * Win32 dependent search path definitions and API
  25.  */
  26.  
  27. #ifndef _WIN32_PATH_MD_H_
  28. #define _WIN32_PATH_MD_H_
  29.  
  30. #define    DIR_SEPARATOR        '/'
  31. #define    LOCAL_DIR_SEPARATOR    '\\'
  32.  
  33. #define    CLS_CONST_STRING    "<init>([C)Ljava/lang/String;"
  34.  
  35. #define    CLS_RESLV_INIT_CLASS    "java/lang/Class"
  36. #define    CLS_RESLV_INIT_OBJECT    "java/lang/Object"
  37. #define    CLS_RESLV_INIT_REF    "sun/misc/Ref"
  38.  
  39. #define INTRP_BRKPT_STRING    "sun/tools/debug/BreakpointHandler"
  40.  
  41. #define LANG_MATH_INTEGER_VALOF    "<init>(I)Ljava/lang/Integer;"
  42. #define LANG_MATH_LONG_VALOF    "<init>(J)Ljava/lang/Long;"
  43. #define LANG_MATH_FLOAT_VALOF    "<init>(F)Ljava/lang/Float;"
  44. #define LANG_MATH_DOUBLE_VALOF    "<init>(D)Ljava/lang/Double;"
  45.  
  46. #define LANG_OBJECT_CLONE    "copy(Ljava/lang/Object;)V"
  47.  
  48. #define LANG_STRING_MAKE_STR    "<init>([C)Ljava/lang/String;"
  49.  
  50. char *sysNativePath(char *path);
  51.  
  52. #endif /* !_WIN32_PATH_MD_H_ */
  53.