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
C string litteral is const, fix return type of default_elfinterp. Remove #ifndef...
[tinycc.git]
/
win32
/
lib
/
dllmain.c
blob
2c25b98b8385d5478e62772c4ca0e221bae12803
1
//+---------------------------------------------------------------------------
2
3
#include <windows.h>
4
5
BOOL WINAPI
DllMain
(
HINSTANCE hDll
,
DWORD dwReason
,
LPVOID lpReserved
)
6
{
7
return
TRUE
;
8
}
9