Last change
on this file was 3809, checked in by bird, 11 years ago |
0.6: s/const/const/g - just use the (now) standard 'const' everywhere in emx and kLIBC code. Avoid changing external code too much. fixes #279.
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
433 bytes
|
Line | |
---|
1 | /* sys/ea.h (emx+gcc) */
|
---|
2 |
|
---|
3 | #ifndef _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 *);
|
---|
18 | int _ea_get (struct _ea *, const char *, int, const char *);
|
---|
19 | int _ea_put (struct _ea *, const char *, int, const char *);
|
---|
20 | int _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.