mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 17:59:16 +01:00
68aeb7aafd
* Added a configuration setting to turn this feature off (there you go, pune) * Changed svnrev.sh, to also update the release date of the meta.xml file, and to set the revision to current + 1
35 lines
509 B
C++
35 lines
509 B
C++
#ifndef _NEWTITLES_H
|
|
#define _NEWTITLES_H
|
|
|
|
#include <time.h>
|
|
|
|
class NewTitles
|
|
{
|
|
public:
|
|
static NewTitles *Instance();
|
|
static void DestroyInstance();
|
|
|
|
void Save();
|
|
bool IsNew(u8 *titleid);
|
|
void Remove(u8 *titleid);
|
|
private:
|
|
NewTitles();
|
|
~NewTitles();
|
|
|
|
static NewTitles *instance;
|
|
|
|
class Title {
|
|
public:
|
|
u8 titleId[6];
|
|
time_t timestamp;
|
|
void *next;
|
|
};
|
|
|
|
Title *firstTitle;
|
|
Title *lastTitle;
|
|
bool isDirty;
|
|
bool isNewFile;
|
|
};
|
|
|
|
#endif //_NEWTITLES_H
|