aboutsummaryrefslogtreecommitdiff
path: root/win32/examples/dll.c
diff options
context:
space:
mode:
authorgrischka <grischka>2009-07-18 22:07:10 +0200
committergrischka <grischka>2009-07-18 22:07:10 +0200
commit97738d1ae99035695599e5ddec2f0cd5931101d5 (patch)
treeca576dfc1c232e9292fdd76484b3507e6172dd79 /win32/examples/dll.c
parentbb5e0df79acbe7fa36d0ff14485657b94cc5cd5f (diff)
downloadtinycc-97738d1ae99035695599e5ddec2f0cd5931101d5.tar.gz
tinycc-97738d1ae99035695599e5ddec2f0cd5931101d5.tar.bz2
win32: reformat examples, crt etc
Diffstat (limited to 'win32/examples/dll.c')
-rw-r--r--win32/examples/dll.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/win32/examples/dll.c b/win32/examples/dll.c
index 4202e99..4c1d8ce 100644
--- a/win32/examples/dll.c
+++ b/win32/examples/dll.c
@@ -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);
}
-