source: vendor/emx/current/include/sys/ea.h

Last change on this file was 18, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 457 bytes
Line 
1/* sys/ea.h (emx+gcc) */
2
3#ifndef _SYS_EA_H
4#define _SYS_EA_H
5
6#if defined (__cplusplus)
7extern "C" {
8#endif
9
10struct _ea
11{
12 int flags;
13 int size;
14 void *value;
15};
16
17void _ea_free (struct _ea *);
18int _ea_get (struct _ea *, __const__ char *, int, __const__ char *);
19int _ea_put (struct _ea *, __const__ char *, int, __const__ char *);
20int _ea_remove (__const__ char *, int, __const__ char *);
21
22#if defined (__cplusplus)
23}
24#endif
25
26#endif /* not _SYS_EA_H */
Note: See TracBrowser for help on using the repository browser.