[Meta-diff-devel] CompareShellEx CompareShellEx.dpr,1.3,1.4
Brought to you by:
undees
From: Sebastian S. <ey...@us...> - 2005-08-17 06:49:22
|
Update of /cvsroot/meta-diff/CompareShellEx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2744/CompareShellEx Modified Files: CompareShellEx.dpr Log Message: - Undefined "UnInstallMsgBox" by default. - Temp. disabled hints for "Uninstall" method. Index: CompareShellEx.dpr =================================================================== RCS file: /cvsroot/meta-diff/CompareShellEx/CompareShellEx.dpr,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CompareShellEx.dpr 30 Jul 2005 12:32:08 -0000 1.3 --- CompareShellEx.dpr 17 Aug 2005 06:49:10 -0000 1.4 *************** *** 17,21 **** {$I CompareShellEx.lc} ! {$DEFINE UnInstallMsgBox} //{$DEFINE VC} --- 17,21 ---- {$I CompareShellEx.lc} ! //{$DEFINE UnInstallMsgBox} //{$DEFINE VC} *************** *** 401,404 **** --- 401,407 ---- end; + // Disable hint H2077 about the unused "RemoveCount" if "UnInstallMsgBox" is not + // defined. Unfortunately, Delphi has no way to disable only specific hints. + {$HINTS OFF} procedure Uninstall(hWnd:HWND;hInstance:HINST;lpszCmdLine:LPSTR;nCmdShow:Integer); stdcall; var *************** *** 437,440 **** --- 440,444 ---- end; end; + {$HINTS ON} var |