Inspired by Small Applications in Delphi - Tutorial by n0v4, these "Mini-Delphi" units (identification by PEiD) have been updated to work with all Windows NT operating systems. System.pas unit System; interfaceprocedure _Halt0;procedure _HandleFinally; type TGUID = record D1: LongWord; D2: Word; D3: Word; D4: array [0..7] of Byte; end;var ExitCode: Integer = 0; procedure ExitProcess(ExitCode: Integer); stdcall; external 'kernel32.dll' name 'ExitProcess';implementationprocedure _Halt0;begin ExitProcess(ExitCode);end;procedure _HandleFinally;asmend;end.SysInit.pas unit SysInit;interfaceprocedure _InitExe(InitTable: Pointer);var TlsIndex: Integer = -1; TlsLast: Byte; const PtrToNil: Pointer = nil;implementationprocedure _InitExe(InitTable: Pointer);beginend;end. |








