Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions comtypes/test/test_typeinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,39 @@ def test_dual_interface_ITypeInfo(self):
self.assertEqual(refta.typekind, typeinfo.TKIND_INTERFACE)
self.assertEqual(ti, refti.GetRefTypeInfo(refti.GetRefTypeOfImplType(-1)))

def test_module_ITypeInfo(self):
# `AddressOfMember` method retrieves the addresses of static functions
# or variables defined in a module. We will test this functionality by
# using the 'StdFunctions' module within 'stdole2.tlb', which contains
# static functions like 'LoadPicture' or 'SavePicture'.
# NOTE: The name 'stdole2' refers to OLE 2.0; it is a core Windows
# component that has remained unchanged for decades to ensure
# compatibility, making any future name changes highly improbable.
tlib = LoadTypeLibEx("stdole2.tlb")
# Same as `tinfo = GetTypeInfoOfGuid(GUID('{91209AC0-60F6-11CF-9C5D-00AA00C1489E}'))`
stdfuncs_info = tlib.FindName("StdFunctions")
self.assertIsNotNone(stdfuncs_info)
_, tinfo = stdfuncs_info # type: ignore
tattr = tinfo.GetTypeAttr()
self.assertEqual(tattr.cImplTypes, 0)
self.assertEqual(tattr.typekind, typeinfo.TKIND_MODULE)
memid, *_ = tinfo.GetIDsOfNames("LoadPicture")
self.assertEqual(tinfo.GetDocumentation(memid)[0], "LoadPicture")
# 'LoadPicture' is the alias used within the type library.
# `GetDllEntry` returns the actual exported name from the DLL, which
# may be different.
dll_name, func_name, ordinal = tinfo.GetDllEntry(memid, typeinfo.INVOKE_FUNC)
# For functions exported by name, `GetDllEntry` returns a 3-tuple:
# (DLL name, function name, ordinal of 0).
self.assertIn("oleaut32.dll", dll_name.lower()) # type: ignore
self.assertEqual(func_name, "OleLoadPictureFileEx")
self.assertEqual(ordinal, 0)
_oleaut32 = ctypes.WinDLL(dll_name)
load_picture = getattr(_oleaut32, func_name) # type: ignore
expected_addr = ctypes.cast(load_picture, ctypes.c_void_p).value
actual_addr = tinfo.AddressOfMember(memid, typeinfo.INVOKE_FUNC)
self.assertEqual(actual_addr, expected_addr)


class Test_GetModuleFileName(unittest.TestCase):
@unittest.skipUnless(
Expand Down
8 changes: 3 additions & 5 deletions comtypes/typeinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,13 +405,11 @@ def GetIDsOfNames(self, *names: str) -> list[int]:
self.__com_GetIDsOfNames(rgsznames, len(names), ids) # type: ignore
return ids[:]

def AddressOfMember(self, memid, invkind):
def AddressOfMember(self, memid: int, invkind: int) -> int:
"""Get the address of a function in a dll"""
raise RuntimeError("Check Me")
p = c_void_p()
self.__com_AddressOfMember(memid, invkind, byref(p))
# XXX Would the default impl return the value of p?
return p.value
self.__com_AddressOfMember(memid, invkind, byref(p)) # type: ignore
return p.value # type: ignore

def CreateInstance(
self,
Expand Down