MyDll.dpr 229 B

123456789101112131415
  1. library MyDll;
  2. uses
  3. Windows;
  4. procedure MyDllFunc(hWnd: Integer; lpText, lpCaption: PAnsiChar; uType: Cardinal); stdcall;
  5. begin
  6. MessageBoxA(hWnd, lpText, lpCaption, uType);
  7. end;
  8. exports MyDllFunc;
  9. begin
  10. end.