mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 06:29:16 +02:00
* getactiveobject (and friends) missed stdcall, Mantis #13126
git-svn-id: trunk@12733 -
This commit is contained in:
parent
a2f5f7400b
commit
bbcf30dc2e
@ -3826,9 +3826,9 @@ type
|
|||||||
ACTIVEOBJECT_STRONG = 0;
|
ACTIVEOBJECT_STRONG = 0;
|
||||||
ACTIVEOBJECT_WEAK = 1;
|
ACTIVEOBJECT_WEAK = 1;
|
||||||
|
|
||||||
function RegisterActiveObject(unk: IUnknown; const clsid: TCLSID; dwFlags: DWORD; out dwRegister: culong): HResult; external oleaut32dll name 'RegisterActiveObject';
|
function RegisterActiveObject(unk: IUnknown; const clsid: TCLSID; dwFlags: DWORD; out dwRegister: culong): HResult; stdcall; external oleaut32dll name 'RegisterActiveObject';
|
||||||
function RevokeActiveObject(dwRegister: culong; pvReserved: Pointer) : HResult; external oleaut32dll name 'RevokeActiveObject';
|
function RevokeActiveObject(dwRegister: culong; pvReserved: Pointer) : HResult; stdcall; external oleaut32dll name 'RevokeActiveObject';
|
||||||
function GetActiveObject(const clsid: TCLSID; pvReserved: Pointer; out unk: IUnknown) : HResult; external oleaut32dll name 'GetActiveObject';
|
function GetActiveObject(const clsid: TCLSID; pvReserved: Pointer; out unk: IUnknown) : HResult; stdcall; external oleaut32dll name 'GetActiveObject';
|
||||||
{$endif wince}
|
{$endif wince}
|
||||||
|
|
||||||
function Succeeded(Res: HResult) : Boolean;inline;
|
function Succeeded(Res: HResult) : Boolean;inline;
|
||||||
|
Loading…
Reference in New Issue
Block a user