DragonNest/Common/wEtFileSystem/wEtFileSystem.h
2024-12-20 16:56:44 +08:00

29 lines
1.1 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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();
};
}