mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 09:59:17 +02:00
* fixed some Delphi incompabilities as described here: http://www.lazarus.freepascal.org/index.php/topic,7118.msg33371
git-svn-id: trunk@13449 -
This commit is contained in:
parent
e4161d1d3a
commit
96d650fceb
@ -2924,9 +2924,9 @@ TYPE
|
|||||||
|
|
||||||
Function GetTypeComp(OUT ppTComp: ITypeComp):HResult;StdCall;
|
Function GetTypeComp(OUT ppTComp: ITypeComp):HResult;StdCall;
|
||||||
{$ifndef Call_as}
|
{$ifndef Call_as}
|
||||||
Function GetDocumentation(index: WINT; OUT pBstrName: WideString; OUT pBstrDocString: WideString; OUT pdwHelpContext: DWORD; OUT pBstrHelpFile: WideString):HResult;StdCall;
|
Function GetDocumentation(index: WINT; pBstrName: PWideString; pBstrDocString: PWideString; pdwHelpContext: PDWORD; pBstrHelpFile: PWideString):HResult;StdCall;
|
||||||
{$else}
|
{$else}
|
||||||
Function GetDocumentation(index: WINT; refPtrFlags: DWORD; OUT pBstrName: WideString; OUT pBstrDocString: WideString; OUT pdwHelpContext: DWORD; OUT pBstrHelpFile: WideString):HResult;StdCall;
|
Function GetDocumentation(index: WINT; refPtrFlags: DWORD; pBstrName: PWideString; pBstrDocString: PWideString; pdwHelpContext: PDWORD; pBstrHelpFile: PWideString):HResult;StdCall;
|
||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
{$ifndef Call_as}
|
{$ifndef Call_as}
|
||||||
|
@ -23,7 +23,10 @@ unit comconst;
|
|||||||
SOleError = 'OLE error %.8x';
|
SOleError = 'OLE error %.8x';
|
||||||
SVarNotObject = 'Variant does not reference an automation object';
|
SVarNotObject = 'Variant does not reference an automation object';
|
||||||
SDCOMNotInstalled = 'DCOM not installed';
|
SDCOMNotInstalled = 'DCOM not installed';
|
||||||
|
SNoCloseActiveServer1 = 'NoCloseActiveServer1';
|
||||||
|
SNoCloseActiveServer2 = 'NoCloseActiveServer2';
|
||||||
|
SAutomationWarning = 'COM Automation Warning';
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user