From 3e7a11180941bd12a8925b42151f88effc90583d Mon Sep 17 00:00:00 2001 From: superp00t Date: Sat, 15 Mar 2025 22:54:15 -0400 Subject: [PATCH] fix(win): added missing Shutdown stub to Win32 filestack --- bc/system/file/win/Stacked.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bc/system/file/win/Stacked.cpp b/bc/system/file/win/Stacked.cpp index 15adf4b..760c0ec 100644 --- a/bc/system/file/win/Stacked.cpp +++ b/bc/system/file/win/Stacked.cpp @@ -823,6 +823,12 @@ bool (Delete)(FileParms* parms) { return ::DeleteFile(PATH(name)) != 0; } +// shutdown +bool (Shutdown)(FileParms* parms) { + // ? + return true; +} + } // namespace Stacked } // namespace System_File