mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 21:19:26 +02:00
+ added TOleStrList and POleStrList types (same as TBStrList, Delphi compatibility).
* ICatInformation.EnumCategories second parameter must have type IEnumCategoryInfo, fixed. git-svn-id: trunk@17174 -
This commit is contained in:
parent
812a665cbe
commit
bd123bcfd6
@ -31,6 +31,9 @@ type
|
||||
TBStr = POleStr;
|
||||
TBStrList = array[0..(high(integer) div sizeof(TBSTR))-1] of TBstr;
|
||||
PBStrList = ^TBStrList;
|
||||
POleStrList = ^TOleStrList;
|
||||
TOleStrList = array[0..(high(integer) div sizeof(POleStr))-1] of POleStr;
|
||||
|
||||
PBStr = ^TBStr;
|
||||
TOleEnum = type LongWord;
|
||||
LargeInt = Types.LargeInt;
|
||||
@ -3393,7 +3396,7 @@ Type
|
||||
|
||||
ICatInformation = interface(IUnknown)
|
||||
['{0002E013-0000-0000-C000-000000000046}']
|
||||
function EnumCategories(lcid:lcid;out ppenumCategoryInfo : ICatInformation):HResult; StdCall;
|
||||
function EnumCategories(lcid:lcid;out ppenumCategoryInfo : IEnumCategoryInfo):HResult; StdCall;
|
||||
function GetCategoryDesc(rcatid:PCATID;lcid:LCID;out pszdesc:lpwstr):HResult; StdCall;
|
||||
function EnumClassesOfCategories(cImplemented : ULong; rgcatidImpl:PCATID;cRequired:ULong; rgcatidreq:PCATID; out ppenumclsid : IEnumClsID):HResult; StdCall;
|
||||
function ISClassOfCategories(rclsid:pclsid;cImplemented:ULong;rgcatidimpl:PCATID;CRequired:ULONG;rgcatidreq : pcatid):HResult; StdCall;
|
||||
|
Loading…
Reference in New Issue
Block a user