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,9 @@
//#include <windows.h>
#ifdef _DLLMACRO
#define DllExport __declspec(dllexport)
#else
#define DllExport __declspec(dllimport)
#endif
DllExport DWORD DoMyJob(HWND hMainDlg, char *szFname, DWORD lpReserved, LPVOID lpParam);
DllExport LPSTR LoadDll();