From 553d83d0f0ee7b32bcd0e83a9b6bf1e62d134084 Mon Sep 17 00:00:00 2001 From: rjkiv <76180273+rjkiv@users.noreply.github.com> Date: Sun, 27 Jul 2025 11:52:21 -0700 Subject: [PATCH] add funcptr typedef --- dll/msvcrt.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dll/msvcrt.cpp b/dll/msvcrt.cpp index e3d36dd..4a4887a 100644 --- a/dll/msvcrt.cpp +++ b/dll/msvcrt.cpp @@ -1,5 +1,7 @@ #include "common.h" +typedef int (*_PIFV)(); + namespace msvcrt { int _commode; int _fmode;