2009-06-04 22:13:39 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* PromptWindows
|
|
|
|
* USB Loader GX 2009
|
|
|
|
*
|
|
|
|
* PromptWindows.h
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _GETENTRIES_H_
|
|
|
|
#define _GETENTRIES_H_
|
|
|
|
|
2009-09-27 18:19:53 +00:00
|
|
|
#include <wctype.h>
|
|
|
|
|
|
|
|
struct discHdr;
|
|
|
|
extern discHdr *gameList;
|
|
|
|
extern u32 gameCnt;
|
|
|
|
extern wchar_t *gameFilter;
|
|
|
|
extern wchar_t *gameFilterNextList;
|
|
|
|
extern wchar_t *gameFilterPrev;
|
|
|
|
|
2009-07-27 09:43:48 +00:00
|
|
|
//! param t
|
2009-07-30 05:41:12 +00:00
|
|
|
//! make this 1 if you want the function to ignore the rules
|
2009-07-27 09:43:48 +00:00
|
|
|
//! (settings and parental control) when making the game list.
|
2009-07-30 05:41:12 +00:00
|
|
|
//!
|
2009-09-27 18:19:53 +00:00
|
|
|
//! param Filter
|
|
|
|
//! set this Parameter to Filter the List
|
|
|
|
//! if this Parameter=NULL then the filter is not changed
|
|
|
|
//! if this Parameter="" then no filter is activ
|
|
|
|
//!
|
|
|
|
int __Menu_GetEntries(int t=0, const wchar_t* Filter=NULL);
|
2009-06-04 22:13:39 +00:00
|
|
|
|
|
|
|
#endif
|