repo.or.cz
/
tinycc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
portability: fix void* <-> target address conversion confusion
[tinycc.git]
/
win32
/
examples
/
hello_dll.c
blob
7adba77ec58dfb852b59eeb0c8e85a82b7ea293d
1
//+---------------------------------------------------------------------------
2
//
3
// HELLO_DLL.C - Windows DLL example - main application part
4
//
5
6
#include <windows.h>
7
8
void
HelloWorld
(
void
);
9
10
int
WINAPI
WinMain
(
11
HINSTANCE hInstance
,
12
HINSTANCE hPrevInstance
,
13
LPSTR lpCmdLine
,
14
int
nCmdShow
)
15
{
16
HelloWorld
();
17
return
0
;
18
}
19