git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1511 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
omegadox
2008-12-12 11:27:50 +00:00
parent 13acef8793
commit 8149e1481a
3 changed files with 88 additions and 85 deletions

View File

@ -190,8 +190,8 @@ inline u64 swap64(u64 data) {return(((u64)swap32(data) << 32) | swap32(data >> 3
// Utility functions
void PanicAlert(const char* format, ...);
void SuccessAlert(const char* format, ...);
void PanicAlert(const char* text, ...);
void SuccessAlert(const char* text, ...);
bool PanicYesNo(const char* text, ...);
bool AskYesNo(const char* text, ...);