Subversion Repositories filter_foundry

Rev

Rev 444 | Rev 454 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 444 Rev 445
Line 668... Line 668...
668
                        DeleteFile(&dst->szName[0]);
668
                        DeleteFile(&dst->szName[0]);
669
 
669
 
670
                        sprintf(errA, "Could not create %d bit standalone plugin (doresources failed).", bits);
670
                        sprintf(errA, "Could not create %d bit standalone plugin (doresources failed).", bits);
671
                        #ifdef UNICODE
671
                        #ifdef UNICODE
672
                        mbstowcs(errW, errA, MAX_PATH + 200);
672
                        mbstowcs(errW, errA, MAX_PATH + 200);
673
                        alertuser(&errW[0], (TCHAR*)TEXT(""));
673
                        simplealert(&errW[0]);
674
                        #else
674
                        #else
675
                        alertuser(&errA[0], (TCHAR*)TEXT(""));
675
                        simplealert(&errA[0]);
676
                        #endif
676
                        #endif
677
                }
677
                }
678
        }
678
        }
679
        else {
679
        else {
680
                // If you see this error, please make sure that you have called foundry_3264_mixer to include the 32/64 plugins as resource!
680
                // If you see this error, please make sure that you have called foundry_3264_mixer to include the 32/64 plugins as resource!
Line 682... Line 682...
682
                //DeleteFile(dstname);
682
                //DeleteFile(dstname);
683
 
683
 
684
                sprintf(errA, "Could not create %d bit standalone plugin (File extraction failed).", bits);
684
                sprintf(errA, "Could not create %d bit standalone plugin (File extraction failed).", bits);
685
                #ifdef UNICODE
685
                #ifdef UNICODE
686
                mbstowcs(errW, errA, MAX_PATH + 200);
686
                mbstowcs(errW, errA, MAX_PATH + 200);
687
                alertuser(&errW[0], (TCHAR*)TEXT(""));
687
                simplealert(&errW[0]);
688
                #else
688
                #else
689
                alertuser(&errA[0], (TCHAR*)TEXT(""));
689
                simplealert(&errA[0]);
690
                #endif
690
                #endif
691
        }
691
        }
692
 
692
 
693
        return res ? noErr : ioErr;
693
        return res ? noErr : ioErr;
694
}
694
}