mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 17:15:06 +01:00
6abfa87e0e
need of it anymore, also removed miigotus wrapper
32 lines
814 B
C++
32 lines
814 B
C++
#ifndef CLIST
|
|
#define CLIST
|
|
|
|
#include <ogcsys.h>
|
|
#include <dirent.h>
|
|
#include <sys/types.h>
|
|
#include <sys/param.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
#include "DeviceHandler.hpp"
|
|
#include "wbfs_ext.h"
|
|
#include "libwbfs/libwbfs.h"
|
|
#include "disc.h"
|
|
#include "text.hpp"
|
|
#include "cache.hpp"
|
|
#include "config/config.hpp"
|
|
|
|
template <typename T>
|
|
class CList
|
|
{
|
|
public:
|
|
CList(){};
|
|
~CList(){};
|
|
void GetPaths(vector<string> &pathlist, string containing, string directory, bool wbfs_fs = false, bool dml = false);
|
|
void GetHeaders(vector<string> pathlist, vector<T> &headerlist, string, string, string, Config &plugin);
|
|
void GetChannels(vector<T> &headerlist, string, u32, string);
|
|
private:
|
|
void Check_For_ID(u8 *id, string path, string one, string two);
|
|
};
|
|
#endif
|