MyDll.c 155 B

123456
  1. #include <windows.h>
  2. void __stdcall MyDllFunc(HWND hWnd, char *lpText, char *lpCaption, UINT uType)
  3. {
  4. MessageBox(hWnd, lpText, lpCaption, uType);
  5. }