home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / kaffevm / support.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  52 lines

  1. /*
  2.  * support.h
  3.  * Various support routines.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *                 City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, August 1996.
  12.  */
  13.  
  14. #ifndef __support_h
  15. #define    __support_h
  16.  
  17. /*
  18.  * Some systems need specific exports for funcions to be shared.
  19.  */
  20. #if defined(__WIN32__)
  21.  
  22. #if defined(__BORLANDC__)
  23. #define EXPORT(t)    t __export
  24. #define IMPORT(t)    extern t __import
  25. #elif defined(__MSC)
  26. #define EXPORT(t)    t __export
  27. #define IMPORT(t)    extern __declspec(dllimport) t
  28. #endif
  29.  
  30. #else
  31. #define EXPORT(t)       t
  32. #define IMPORT(t)       extern t
  33. #endif
  34.  
  35. /* For user defined properties */
  36. typedef struct _userProperty {
  37.         char*                   key; 
  38.         char*                   value; 
  39.         struct _userProperty*   next;
  40. } userProperty;
  41.  
  42. IMPORT(userProperty*) userProperties;
  43.  
  44. extern void        setProperty(void*, char*, char*);
  45. extern void        classname2pathname(char*, char*);
  46. extern struct _object*    makeJavaCharArray(char*, int);
  47. extern long        do_execute_java_method(void*, object*, char*, char*, struct _methods*, int, ...);
  48. extern object*        execute_java_constructor(void*, char*, classes*, char*, ...);
  49. extern jlong        currentTime(void);
  50.  
  51. #endif
  52.