mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Fixed some IDE issues
Fixed some issues related to creating new projects and workspace Added 'Refresh' option to project Fixed auto-include refresh Fixed folder rename Fixed EOF issue involving DbgModule string table
This commit is contained in:
parent
8a02874b51
commit
0ce6e44523
14 changed files with 374 additions and 163 deletions
|
@ -55,12 +55,12 @@ bool FileHandleStream::Eof()
|
|||
::SetFilePointer(mFileHandle, 0, 0, FILE_END);
|
||||
return mVFilePos >= (int)::SetFilePointer(mFileHandle, 0, 0, FILE_CURRENT);
|
||||
}
|
||||
return ::SetFilePointer(mFileHandle, 0, 0, FILE_CURRENT) != ::GetFileSize(mFileHandle, NULL);
|
||||
return ::SetFilePointer(mFileHandle, 0, 0, FILE_CURRENT) >= ::GetFileSize(mFileHandle, NULL);
|
||||
}
|
||||
|
||||
int FileHandleStream::GetSize()
|
||||
{
|
||||
return ::GetFileSize(mFileHandle, NULL);;
|
||||
{
|
||||
return ::GetFileSize(mFileHandle, NULL);
|
||||
}
|
||||
|
||||
void FileHandleStream::Read(void* ptr, int size)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue