Working release build

This commit is contained in:
Loki Rautio
2026-03-01 12:04:39 -06:00
parent f85674da9b
commit 425ea4df34
34 changed files with 4332 additions and 4586 deletions

View File

@@ -0,0 +1,12 @@
; iob_shim.asm
; Provides __iob_func for legacy libs compiled against pre-VS2015 CRT
.code
EXTRN __acrt_iob_func:PROC
__iob_func PROC
mov ecx, 0
jmp __acrt_iob_func
__iob_func ENDP
END