hello_dll.c 440 B

123456789101112131415161718192021
  1. //+---------------------------------------------------------------------------
  2. //
  3. // HELLO_DLL.C - Windows DLL example - main application part
  4. //
  5. #include <windows.h>
  6. void hello_func (void);
  7. __declspec(dllimport) extern const char *hello_data;
  8. int WINAPI WinMain(
  9. HINSTANCE hInstance,
  10. HINSTANCE hPrevInstance,
  11. LPSTR lpCmdLine,
  12. int nCmdShow)
  13. {
  14. hello_data = "Hello World!";
  15. hello_func();
  16. return 0;
  17. }