MyDll.dpr 221 B

1234567891011121314
  1. library MyDll;
  2. uses
  3. Windows;
  4. procedure MyDllFunc(hWnd: HWND; lpText, lpCaption: PChar; uType: Cardinal); stdcall;
  5. begin
  6. MessageBox(hWnd, lpText, lpCaption, uType);
  7. end;
  8. exports MyDllFunc;
  9. begin
  10. end.