This commit is contained in:
2024-08-07 09:16:27 -04:00
parent fdfadd5c7e
commit 5f971cf684
5200 changed files with 731717 additions and 0 deletions

27
uudecode/FILEINFO.HPP Normal file
View File

@@ -0,0 +1,27 @@
#ifndef _UUDECODE_FILEINFO_HPP_
#define _UUDECODE_FILEINFO_HPP_
#ifndef _COMMON_WINDOWS_HPP_
#include <common/windows.hpp>
#endif
class FileInfo
{
public:
FileInfo(void);
~FileInfo(); // cannot be virtual
enum{MaxLength=0x800};
BYTE mBuffer[MaxLength];
HANDLE mhFileHandle;
DWORD mBufferIndex;
DWORD mlpBufferPointer;
};
FileInfo::FileInfo(void)
: mhFileHandle(INVALID_HANDLE_VALUE), mBufferIndex(0), mlpBufferPointer(0)
{
}
FileInfo::~FileInfo()
{
}
#endif