Skip to content

Commit c3cedce

Browse files
committed
update
1 parent d1f24fb commit c3cedce

25 files changed

Lines changed: 21 additions & 18 deletions

MBPython/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# -*- coding:utf-8 -*-
2+
from ctypes import c_int
3+
from platform import architecture
4+
bit=architecture()[0]
5+
_LRESULT=c_int
6+
if bit == '64bit':
7+
from ctypes import c_longlong
8+
_LRESULT=c_longlong
29
from .seticon import set_icon
310
from .screenshot import screen_shot
411
from . import miniblink
175 Bytes
Binary file not shown.
175 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.
-20 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)