You've already forked lazarus-ccr
* Fix compilation with fpc 222 under Linux
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@508 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -48,7 +48,7 @@ end;
|
||||
|
||||
//----------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function TEnumFormatEtc.Next(celt: LongWord; out elt: FormatEtc; out pceltFetched: LongWord): HResult;
|
||||
function TEnumFormatEtc.Next(celt: LongWord; out elt: FormatEtc;pceltFetched:pULong=nil): HResult;
|
||||
{
|
||||
var
|
||||
CopyCount: LongWord;
|
||||
@ -384,7 +384,7 @@ end;
|
||||
|
||||
//----------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function TVTDataObject.EnumDAvise(Out enumAdvise : IEnumStatData):HResult;
|
||||
function TVTDataObject.EnumDAdvise(Out enumAdvise : IEnumStatData):HResult;
|
||||
|
||||
begin
|
||||
{
|
||||
@ -420,7 +420,7 @@ end;
|
||||
|
||||
//----------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Function TVTDataObject.GetCanonicalFormatTEtc(const pformatetcIn : FORMATETC;Out pformatetcOut : FORMATETC):HResult;
|
||||
Function TVTDataObject.GetCanonicalFormatEtc(const pformatetcIn : FORMATETC;Out pformatetcOut : FORMATETC):HResult;
|
||||
|
||||
begin
|
||||
//Result := DATA_S_SAMEFORMATETC;
|
||||
|
@ -24,9 +24,10 @@ const
|
||||
type
|
||||
//types from win unit
|
||||
Long = LongInt;
|
||||
WinBool= LongBool;
|
||||
Bool= WinBool;
|
||||
WinBool = LongBool;
|
||||
Bool = WinBool;
|
||||
ULONG = cardinal;
|
||||
PULONG = ^ULONG;
|
||||
LONGLONG = int64;
|
||||
LPDWORD = ^DWORD;
|
||||
LPVOID = pointer;
|
||||
|
Reference in New Issue
Block a user