| HH Function |
Unit
Unit5
Declaration
Function HH(hwndCaller: THandle; pszFile: PChar; uCommand: Cardinal; dwData: Longint): THandle;Implementation
function HH;
begin
Result := 0;
if (Assigned(HtmlHelpA)) then
begin
Result := HtmlHelpA(hwndCaller, pszFile, uCommand, dwData);
end;
End; |
|
|