Virtual-File-System/Vfs.dpr
2019-04-30 17:26:37 +03:00

19 lines
318 B
ObjectPascal

library Vfs;
(*
Author: Alexander Shostak aka Berserker aka EtherniDee.
*)
uses Windows;
procedure DLLEntryPoint (Reason: DWORD);
begin
// Stop VFS globally!!!!!!!!!
end;
begin
if System.DllProc = nil then begin
System.DllProc := @DLLEntryPoint;
DllEntryPoint(Windows.DLL_PROCESS_ATTACH);
end;
end.