win32: reformat examples, crt etc

This commit is contained in:
grischka
2009-07-18 22:07:10 +02:00
parent bb5e0df79a
commit 97738d1ae9
4 changed files with 148 additions and 134 deletions

View File

@ -4,12 +4,9 @@
//
#include <windows.h>
#define DLL_EXPORT __declspec(dllexport)
DLL_EXPORT void HelloWorld (void)
{
MessageBox (0, "Hello World!", "From DLL", MB_ICONINFORMATION);
MessageBox (0, "Hello World!", "From DLL", MB_ICONINFORMATION);
}