mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-06 04:52:14 -07:00
10 lines
357 B
Python
10 lines
357 B
Python
from ctypes import POINTER
|
|
|
|
from ..objidl import IEnumMoniker
|
|
from ..wintypes import DWORD, GUID, HRESULT, REFIID, IUnknown, interface
|
|
|
|
|
|
@interface
|
|
class ICreateDevEnum(IUnknown):
|
|
def CreateClassEnumerator(self, refiid : REFIID, enumMoniker : POINTER(IEnumMoniker), flags : DWORD ) -> HRESULT: ...
|
|
IID = GUID('29840822-5B84-11D0-BD3B-00A0C911CE86')
|