From 1b2e744f089c2b17b4ef648847def3145e14512d Mon Sep 17 00:00:00 2001 From: Jerry Jacobs Date: Fri, 26 Jul 2024 14:12:03 +0200 Subject: [PATCH] Create initial python dll loader --- README.md | 3 +++ main.py | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 main.py diff --git a/README.md b/README.md index 3993b36..d76849b 100644 --- a/README.md +++ b/README.md @@ -70,3 +70,6 @@ Following detections have been tested: * +## Development information + +* diff --git a/main.py b/main.py new file mode 100644 index 0000000..3c0566b --- /dev/null +++ b/main.py @@ -0,0 +1,5 @@ +import ctypes + +lib = ctypes.cdll.LoadLibrary('library.dll') +main = library.executeMain +main()