Added static binary tools collection (originally in SVN archive)

This commit is contained in:
2021-02-11 10:21:04 -05:00
parent cd42e4e051
commit eae7957d51
164 changed files with 53763 additions and 0 deletions

View File

@ -0,0 +1,30 @@
//sample provided by _pusher_
library Sample;
uses
Windows;
type DLL_RET_MSG = record
szMsgText: PChar;
szMsgHead: PChar;
dRetVal: DWORD;
dRetExVal: DWORD;
dFlags: DWORD;
end;
function LoadDll:PChar;cdecl;
begin
result:='Name for Plugin';
end;
function DoMyJob(hMainDlg: HWND; szFname: PChar; lpReserved: DWORD; DRM: DLL_RET_MSG):DWORD; cdecl;
begin
Messagebox(hMainDlg,Pchar('hello world'+#13+#10+'FileName: '+szFname),'',MB_OK);
result:=1; //this is like showing peid all went well.
end;
exports
DoMyJob,
LoadDll;
end.