Ignore:
Timestamp:
Jul 1, 2005, 1:23:09 AM (20 years ago)
Author:
bird
Message:

o Added fwide() (dummy until LIBC07).
o Renamed struct _FILE to struct sFILE to match BSD.

Location:
trunk/src/emx/include/sys
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/sys/video.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2119 r2120  
    6868#define V_SCROLL_CLEAR 4
    6969
    70 struct _FILE;
     70struct __sFILE;
    7171
    7272void v_attrib (int a);
     
    7777void v_delline (int count);
    7878void v_dimen (int *width, int *height);
    79 int v_fclose (struct _FILE *stream);
    80 struct _FILE *v_fopen (void);
     79int v_fclose (struct __sFILE *stream);
     80struct __sFILE *v_fopen (void);
    8181int v_getattr (void);
    8282void v_getctype (int *start, int *end);
  • trunk/src/emx/include/sys/winmgr.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2119 r2120  
    5454#endif
    5555
    56 struct _FILE;
     56struct __sFILE;
    5757
    5858typedef struct _wm_window *wm_handle;
     
    117117#endif
    118118
    119 int wm_fclose (struct _FILE *stream);
    120 struct _FILE *wm_fopen (wm_handle wh);
     119int wm_fclose (struct __sFILE *stream);
     120struct __sFILE *wm_fopen (wm_handle wh);
    121121
    122122#if defined (__GNUC__)
Note: See TracChangeset for help on using the changeset viewer.