mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* wince/ : files removed.
(config, dll.mak, exe.mak, mswince-ruby17.def, io.c, process.c, signal.c, string.c, time.c) * wince/ : files added. (assert.c, Makefile.sub, mkexports.rb, io_wce.c, process_wce.c, signal_wce.c, string_wce.c, time_wce.c) * wince/configure.bat : like mswin32 style. * wince/direct.c : remove "static" at _currentdir. * wince/io.h : change definition. * wince/stdio.c : _fdopen -> fdopen. * wince/process.h : add_P_OVERLAY. * wince/time.h : change definition. * wince/wincemain.c : add wce_SetCurrentDir. * wince/wince.c : add wce_SetCurrentDir and wce_fopen. fix GetModuleFileNameA to return correct "lpFileName". * wince/wince.h : remove #ifdef. * wince/sys/utime.h, utime.c : rename _utime to utime. * wince/sys/stat.c : expand relative directory in stat. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6068cd7540
commit
5f0df51865
30 changed files with 1355 additions and 3064 deletions
19
wince/io.h
19
wince/io.h
|
@ -1,6 +1,11 @@
|
|||
|
||||
#ifndef _IO_H_
|
||||
#define _IO_H_
|
||||
#ifndef _IO_WINCE_H_
|
||||
#define _IO_WINCE_H_
|
||||
|
||||
#ifndef _TIME_T_DEFINED
|
||||
typedef unsigned long time_t;
|
||||
#define _TIME_T_DEFINED
|
||||
#endif
|
||||
|
||||
#ifndef _FSIZE_T_DEFINED
|
||||
typedef unsigned long _fsize_t; /* Could be 64 bits for Win32 */
|
||||
|
@ -29,15 +34,15 @@ int _rename (const char *oldname, const char *newname);
|
|||
int _unlink(const char *file);
|
||||
int _umask(int cmask);
|
||||
int _chmod(const char *path, int mode);
|
||||
int _dup( int handle );
|
||||
int dup2( int handle1, int handle2 );
|
||||
int dup( int handle );
|
||||
//int dup2( int handle1, int handle2 );
|
||||
int _isatty(int fd);
|
||||
int _pipe(int *phandles, unsigned int psize, int textmode);
|
||||
int _access(const char *filename, int flags);
|
||||
int _open_osfhandle ( long osfhandle, int flags);
|
||||
long _get_osfhandle( int filehandle );
|
||||
int _open(const char *file, int mode,...);
|
||||
int _close(int fd);
|
||||
int close(int fd);
|
||||
int _read(int fd, void *buffer, int length);
|
||||
int _write(int fd, const void *buffer, unsigned count);
|
||||
long _lseek(int handle, long offset, int origin);
|
||||
|
@ -58,12 +63,14 @@ int _findclose( long handle );
|
|||
#define read _read
|
||||
#define write _write
|
||||
#define umask _umask
|
||||
#define dup _dup
|
||||
//#define dup _dup
|
||||
#define isatty _isatty
|
||||
#define access _access
|
||||
#define pipe _pipe
|
||||
#define setmode _setmode
|
||||
#define lseek _lseek
|
||||
|
||||
#define _close close
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue