home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
kaffe-0.5p4-src.tgz
/
tar.out
/
contrib
/
kaffe
/
kaffeh
/
readClassConfig.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
765b
|
29 lines
/*
* readClassConfig.h
* Various bits of information in a Java class file.
*
* Copyright (c) 1996 Systems Architecture Research Centre,
* City University, London, UK.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
*/
#ifndef __readclassconfig_h
#define __readclassconfig_h
#include <stdio.h>
typedef FILE classFile;
typedef struct _classes classes;
typedef struct _methods methods;
#define ADDCLASS(t, s, a, c) addClass(t, s, a, c)
#define READFIELD(f, t) readField(f, t, constant_pool)
#define READFIELD_END() readFieldEnd()
#define READMETHOD(f, t) readMethod(f, t, constant_pool)
#endif