[Scummvm-cvs-logs] CVS: scummvm/bs2/driver driver96.h,1.6,1.7 misc.cpp,1.3,1.4
Jonathan Gray
khalek at users.sourceforge.net
Mon Jul 28 00:37:09 CEST 2003
Update of /cvsroot/scummvm/scummvm/bs2/driver
In directory sc8-pr-cvs1:/tmp/cvs-serv17241/driver
Modified Files:
driver96.h misc.cpp
Log Message:
rename _mkdir
Index: driver96.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/bs2/driver/driver96.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- driver96.h 28 Jul 2003 07:31:14 -0000 1.6
+++ driver96.h 28 Jul 2003 07:36:26 -0000 1.7
@@ -1620,7 +1620,6 @@
#undef SetFileAttributes
#undef GetCurrentDirectory
#undef GetVolumeInformation
-#undef _mkdir
#undef GetModuleFileName
#endif
@@ -1635,7 +1634,7 @@
extern void DeleteFile(char *file);
extern void GetCurrentDirectory(uint32 max, char* path);
extern int32 GetVolumeInformation(char *cdPath, char *sCDName, uint32 maxPath, uint8 *, DWORD *dwMaxCompLength, DWORD *dwFSFlags, uint8 *, uint32 a);
-extern void _mkdir(const char *pathname);
+extern void scumm_mkdir(const char *pathname);
extern void GetModuleFileName(void *module, char *destStr, uint32 maxLen);
//-----------------------------------------------------------------------------
Index: misc.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/bs2/driver/misc.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- misc.cpp 28 Jul 2003 07:31:14 -0000 1.3
+++ misc.cpp 28 Jul 2003 07:36:27 -0000 1.4
@@ -53,8 +53,8 @@
}
// FIXME wrap different platform specific mkdir calls and actually do something
-void _mkdir(const char *pathname) {
- warning("stub _mkdir %s", pathname);
+void scumm_mkdir(const char *pathname) {
+ warning("stub scumm_mkdir %s", pathname);
}
void GetModuleFileName(void *module, char *destStr, uint32 maxLen) {
More information about the Scummvm-git-logs
mailing list