初步修复
This commit is contained in:
parent
8fc4357cc6
commit
e4714f3f0e
46705 changed files with 12004901 additions and 0 deletions
29
Common/wEtFileSystem/wEtFileSystem.h
Normal file
29
Common/wEtFileSystem/wEtFileSystem.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
// wEtFileSystem.h
|
||||
|
||||
#pragma once
|
||||
|
||||
using namespace System;
|
||||
|
||||
#include "../EtFileSystem/EtFileSystem.h"
|
||||
#pragma comment ( lib, "advapi32.lib" )
|
||||
|
||||
|
||||
namespace wEtPackingFile
|
||||
{
|
||||
public ref class wCEtPackingFile
|
||||
{
|
||||
protected:
|
||||
CEtPackingFile* m_pEtPackingFile;
|
||||
|
||||
public:
|
||||
wCEtPackingFile();
|
||||
virtual ~wCEtPackingFile();
|
||||
|
||||
public:
|
||||
bool NewFileSystem( System::String^ strPath );
|
||||
void CloseFileSystem();
|
||||
bool ChangeDir( System::String^ strPath );
|
||||
bool AddFile( System::String^ strName );
|
||||
DWORD GetFileSystemSize();
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue