Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. //+---------------------------------------------------------------------------
  2. //
  3. //  dll.c - Windows DLL example - dynamically linked part
  4. //
  5.  
  6. #include <windows.h>
  7. #define DLL_EXPORT __declspec(dllexport)
  8.  
  9. DLL_EXPORT void HelloWorld (void)
  10. {
  11.     MessageBox (0, "Hello World!", "From DLL", MB_ICONINFORMATION);
  12. }
  13.