Skip to content

Commit

Permalink
Test and see if test pass
Browse files Browse the repository at this point in the history
  • Loading branch information
moi15moi committed Jan 25, 2025
1 parent 905c393 commit fd54260
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comtypes/server/localserver.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging
import queue
from ctypes import HRESULT, POINTER, OleDLL, Structure, byref, c_ulong, c_void_p
from ctypes import HRESULT, POINTER, OleDLL, Structure, byref, c_ulong, c_void_p, pointer
from ctypes.wintypes import DWORD, LPDWORD
from typing import TYPE_CHECKING, Any, Literal, Optional, Sequence, Type

Expand All @@ -27,7 +27,7 @@

REFCLSID = POINTER(GUID)
_CoRegisterClassObject = _ole32.CoRegisterClassObject
_CoRegisterClassObject.argtypes = [REFCLSID, POINTER(POINTER(Structure)), DWORD, DWORD, LPDWORD]
_CoRegisterClassObject.argtypes = [REFCLSID, pointer(pointer(Structure)), DWORD, DWORD, LPDWORD]
_CoRegisterClassObject.restype = HRESULT

_CoRevokeClassObject = _ole32.CoRevokeClassObject
Expand Down

0 comments on commit fd54260

Please sign in to comment.