Merge branch 'Free_Coder-main-patch-26312' into 'main'

bug fix for #39382 in typelib.pas

See merge request freepascal.org/fpc/source!64
This commit is contained in:
Frank Freeman 2025-04-02 20:00:19 +00:00
commit 82dafb198c

View File

@ -617,6 +617,12 @@ begin
// build function/procedure
INVOKE_FUNC :
begin
{ https://docs.microsoft.com/en-us/windows/win32/api/oaidl/ne-oaidl-funcflags
FUNCFLAG_FRESTRICTED: The function should not be accessible from macro languages.
This flag is intended for system-level functions or functions that type browsers should not display.
FUNCFLAG_FRESTRICTED applies to all methods of IUnknown and IDispatch.}
if FD^.wFuncFlags=FUNCFLAG_FRESTRICTED then // do not import
Continue;
if not MakeValidId(BstrName,sMethodName) then
AddToHeader('// Warning: renamed method ''%s'' in %s to ''%s''',[BstrName,iname,sMethodName],True);
bIsFunction:=(bIsDispatch and (FD^.elemdescFunc.tdesc.vt<>VT_VOID)) or