mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-06 04:52:14 -07:00
7 lines
165 B
Python
7 lines
165 B
Python
from ctypes import POINTER, Structure
|
|
|
|
from ..wintypes import VARIANT, dll_import
|
|
|
|
|
|
@dll_import('OleAut32')
|
|
def VariantInit( pvarg : POINTER(VARIANT) ) -> None: ...
|