Committing in .

OpenVMS updates

 Modified Files:
 	wxWidgets/contrib/src/deprecated/resource.cpp
 	wxWidgets/src/common/descrip.mms
 	wxWidgets/src/common/wfstream.cpp


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26992 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2004-04-28 08:00:44 +00:00
parent bc334f39ec
commit b7fafe6a1f
3 changed files with 21 additions and 5 deletions

View File

@@ -251,7 +251,13 @@ size_t wxFFileInputStream::OnSysRead(void *buffer, size_t size)
off_t wxFFileInputStream::OnSysSeek(off_t pos, wxSeekMode mode)
{
return ( m_file->Seek(pos, mode) ? m_file->Tell() : wxInvalidOffset );
#ifdef __VMS
#pragma message disable intsignchange
#endif
return ( m_file->Seek(pos, mode) ? m_file->Tell() : wxInvalidOffset );
#ifdef __VMS
#pragma message enable intsignchange
#endif
}
off_t wxFFileInputStream::OnSysTell() const
@@ -324,7 +330,13 @@ off_t wxFFileOutputStream::OnSysTell() const
off_t wxFFileOutputStream::OnSysSeek(off_t pos, wxSeekMode mode)
{
#ifdef __VMS
#pragma message disable intsignchange
#endif
return ( m_file->Seek(pos, mode) ? m_file->Tell() : wxInvalidOffset );
#ifdef __VMS
#pragma message enable intsignchange
#endif
}
void wxFFileOutputStream::Sync()