home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD2.iso / features / j2sdk / files / linux / j2sdklin.bin / jdk1.3.1 / include-old / path.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-05-06  |  592 b   |  32 lines

  1. /*
  2.  * @(#)path.h    1.15 00/02/02
  3.  *
  4.  * Copyright 1994-2000 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the proprietary information of Sun Microsystems, Inc.  
  7.  * Use is subject to license terms.
  8.  * 
  9.  */
  10.  
  11. #ifndef _JAVASOFT_PATH_H_
  12. #define _JAVASOFT_PATH_H_
  13.  
  14. #include "path_md.h"
  15. #include "jvm.h"
  16.  
  17. typedef void *jzfile;
  18. typedef void *jzentry;
  19.  
  20. /*
  21.  * Class path element, which is either a directory or zip file.
  22.  */
  23. typedef struct {
  24.     enum { CPE_DIR, CPE_ZIP } type;
  25.     jzfile *zip;
  26.     char *path;
  27. } cpe_t;
  28.  
  29. cpe_t **GetClassPath(void);
  30.  
  31. #endif /* !_JAVASOFT_PATH_H_ */
  32.