axmol/tools/tolua++/CCFileUtils.pkg

25 lines
745 B
Plaintext

class CCFileUtils
{
/** @deprecated Use getInstance() instead */
static CCFileUtils* sharedFileUtils();
/** @deprecated Use destroyInstance() instead */
static void purgeFileUtils();
static CCFileUtils* getInstance();
static void destroyInstance();
void purgeCachedEntries();
std::string fullPathForFilename(const char *pszFileName);
void loadFilenameLookupDictionaryFromFile(const char* filename);
const char* fullPathFromRelativeFile(const char *pszFilename, const char *pszRelativeFile);
void addSearchResolutionsOrder(const char* order);
void addSearchPath(const char* path);
std::string getWritablePath();
void setPopupNotify(bool bNotify);
bool isPopupNotify();
};