mirror of
https://github.com/CloudDelphi/Virtual-File-System
synced 2025-12-19 09:53:54 +01:00
19 lines
318 B
ObjectPascal
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.
|