mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
5f0df51865
(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
54 lines
922 B
C
54 lines
922 B
C
/***************************************************************
|
|
direct.c
|
|
***************************************************************/
|
|
|
|
#include <windows.h>
|
|
#include <tchar.h>
|
|
#include <direct.h>
|
|
#include "wince.h" /* for wce_mbtowc */
|
|
|
|
/* global for chdir, getcwd */
|
|
char _currentdir[MAX_PATH+1];
|
|
|
|
|
|
char *getcwd(char* buffer, int maxlen)
|
|
{
|
|
strcpy( buffer, _currentdir );
|
|
return buffer;
|
|
}
|
|
|
|
int _chdir(const char * dirname)
|
|
{
|
|
if( MAX_PATH < strlen(dirname) )
|
|
return -1;
|
|
|
|
strcpy( _currentdir, dirname );
|
|
return 0;
|
|
}
|
|
|
|
int _rmdir(const char * dir)
|
|
{
|
|
wchar_t *wdir;
|
|
BOOL rc;
|
|
|
|
/* replace with RemoveDirectory. */
|
|
wdir = wce_mbtowc(dir);
|
|
rc = RemoveDirectoryW(wdir);
|
|
free(wdir);
|
|
|
|
return rc==TRUE ? 0 : -1;
|
|
}
|
|
|
|
int _mkdir(const char * dir)
|
|
{
|
|
wchar_t* wdir;
|
|
BOOL rc;
|
|
|
|
/* replace with CreateDirectory. */
|
|
wdir = wce_mbtowc(dir);
|
|
rc = CreateDirectoryW(wdir, NULL);
|
|
free(wdir);
|
|
|
|
return rc==TRUE ? 0 : -1;
|
|
}
|
|
|