--- np2/macosx/dialog/macalert.cpp 2003/11/24 20:44:14 1.5 +++ np2/macosx/dialog/macalert.cpp 2004/03/02 23:23:06 1.6 @@ -27,7 +27,21 @@ static SInt16 showCautionAlert(CFStringR RunStandardAlert(ret, NULL, &hit); return(hit); } - +/* +#if defined(CPUCORE_IA32) +void msgbox (char* title, char* msg) { + DialogItemIndex hit; + CFStringRef cftitle, cfmsg; + + cftitle = CFSTRj(title); + cfmsg = CFSTRj(msg); + hit = showCautionAlert(cftitle, cfmsg, NULL); + if (cftitle) CFRelease(cftitle); + if (cfmsg) CFRelease(cfmsg); + return; +} +#endif +*/ void ResumeErrorDialogProc(void) { DialogRef ret; AlertStdCFStringAlertParamRec param; @@ -80,4 +94,4 @@ bool QuitWarningDialogProc(void) { } } return(true); -} \ No newline at end of file +}