mirror of
https://github.com/wiiu-env/ContentRedirectionModule.git
synced 2024-11-10 13:45:16 +01:00
16 lines
418 B
C++
16 lines
418 B
C++
#pragma once
|
|
#include "DirInfo.h"
|
|
#include <coreinit/filesystem_fsa.h>
|
|
|
|
typedef struct FSDirectoryEntryEx {
|
|
FSADirectoryEntry realEntry{};
|
|
bool isMarkedAsDeleted = false;
|
|
} FSDirectoryEntryEx;
|
|
|
|
struct DirInfoEx : public DirInfo {
|
|
public:
|
|
FSDirectoryEntryEx *readResult = nullptr;
|
|
int readResultCapacity = 0;
|
|
int readResultNumberOfEntries = 0;
|
|
FSDirectoryHandle realDirHandle = 0;
|
|
}; |