hello_dll.c 337 B

12345678910111213141516171819
  1. //+---------------------------------------------------------------------------
  2. //
  3. // HELLO_DLL.C - Windows DLL example - main application part
  4. //
  5. #include <windows.h>
  6. void HelloWorld (void);
  7. int WINAPI WinMain(
  8. HINSTANCE hInstance,
  9. HINSTANCE hPrevInstance,
  10. LPSTR lpCmdLine,
  11. int nCmdShow)
  12. {
  13. HelloWorld();
  14. return 0;
  15. }