You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a use case to use miniz to read the contents of a zip file from a pointer obtained from the win32 api function LockResource to obtain the data of the zip file that is within the win32 resource section.
Why? This is so I can then grab python314.dll from within the zip file (as a void *) and then use MemoryLoadLibrary, MemoryGetProcAddress to get all of the exports, and then on process cleanup MemoryFreeLibrary. This is basically needed to get my embedded python down to a single file.
The text was updated successfully, but these errors were encountered:
I have a use case to use miniz to read the contents of a zip file from a pointer obtained from the win32 api function
LockResource
to obtain the data of the zip file that is within the win32 resource section.Why? This is so I can then grab
python314.dll
from within the zip file (as avoid *
) and then useMemoryLoadLibrary
,MemoryGetProcAddress
to get all of the exports, and then on process cleanupMemoryFreeLibrary
. This is basically needed to get my embedded python down to a single file.The text was updated successfully, but these errors were encountered: