Fill in some stuff that is needed to compile.

I had better versions of this stuff, which I still need to re-merge.
This commit is contained in:
Ryan C. Gordon 2016-03-31 21:53:54 -04:00
parent f1e8add4ca
commit 88c41117f5
2 changed files with 7 additions and 0 deletions

View File

@ -29,6 +29,8 @@ public:
/* Constructor from character string for insertion in exe-file. */ /* Constructor from character string for insertion in exe-file. */
inline CTFileName(const char *pString, int i) : CTString(convertFromWin32(pString+i)), fnm_pserPreloaded(NULL) {} inline CTFileName(const char *pString, int i) : CTString(convertFromWin32(pString+i)), fnm_pserPreloaded(NULL) {}
void SetAbsolutePath(void) {} // !!! FIXME
/* Assignment. */ /* Assignment. */
CTFileName &operator=(const char *strCharString); CTFileName &operator=(const char *strCharString);
inline void operator=(const CTString &strOther) { inline void operator=(const CTString &strOther) {

View File

@ -897,6 +897,11 @@ void CTFileStream::Open_t(const CTFileName &fnFileName, CTStream::OpenMode om/*=
_plhOpenedStreams->AddTail( strm_lnListNode); _plhOpenedStreams->AddTail( strm_lnListNode);
} }
static void MakeSureDirectoryPathExists(const CTFileName &fnmFullFileName)
{
STUBBED("!!! FIXME: get the code back in from Ryan's original port.");
}
/* /*
* Create a new file or overwrite existing. * Create a new file or overwrite existing.
*/ */