MyDll.dpr 229 B

1234567891011121314
  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.