mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-29 16:30:02 -05:00
10 lines
268 B
Python
10 lines
268 B
Python
import ctypes
|
|
|
|
script_loader = ctypes.CDLL("Script Loader", ctypes.DEFAULT_MODE, int(__script_loader__))
|
|
|
|
|
|
class UI:
|
|
@staticmethod
|
|
def show_message_box(message: str):
|
|
script_loader.showMessageBoxV1(ctypes.create_string_buffer(message.encode("utf-8")))
|