回答編集履歴
2
c_int64 -> c_uint64
answer
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
```
|
13
13
|
from ctypes import byref
|
14
|
-
from ctypes import
|
14
|
+
from ctypes import c_uint64 as UINT64
|
15
15
|
from ctypes import POINTER
|
16
16
|
from ctypes import windll
|
17
17
|
from ctypes import wintypes
|
1
Typo
answer
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
from ctypes import byref
|
14
14
|
from ctypes import c_int64 as UINT64
|
15
15
|
from ctypes import POINTER
|
16
|
-
from ctypes import
|
16
|
+
from ctypes import windll
|
17
17
|
from ctypes import wintypes
|
18
18
|
|
19
19
|
|