First instance of anything that works

This commit is contained in:
2025-04-24 21:31:48 -07:00
commit 4e3a7745d7
17 changed files with 864 additions and 0 deletions

View File

@ -0,0 +1,4 @@
@zig cc main.c -o main.exe -Os -nostdlib -nodefaultlibs -luser32

5
injectable_binary/main.c Normal file
View File

@ -0,0 +1,5 @@
extern void MessageBoxA(int, char*, char*, int);
void wWinMainCRTStartup() {
MessageBoxA(0, "Hello, world!", "Hello, world!", 0);
}

BIN
injectable_binary/main.exe Normal file

Binary file not shown.