home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / EA.H < prev    next >
C/C++ Source or Header  |  1992-12-23  |  561b  |  29 lines

  1. /* sys/ea.h (emx+gcc) */
  2.  
  3. #if !defined (_SYS_EA_H)
  4. #define _SYS_EA_H
  5.  
  6. #if defined (__cplusplus)
  7. extern "C" {
  8. #endif
  9.  
  10. struct _ea
  11. {
  12.   int flags;
  13.   int size;
  14.   void *value;
  15. };
  16.  
  17. void _ea_free (struct _ea *ptr);
  18. int _ea_get (struct _ea *dst, __const__ char *path, int handle,
  19.     __const__ char *name);
  20. int _ea_put (struct _ea *src, __const__ char *path, int handle,
  21.     __const__ char *name);
  22. int _ea_remove (__const__ char *path, int handle, __const__ char *name);
  23.  
  24. #if defined (__cplusplus)
  25. }
  26. #endif
  27.  
  28. #endif /* !defined (_SYS_EA_H) */
  29.