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
Makefile: fix Linux cross install, cleanup
[tinycc.git]
/
win32
/
lib
/
dllmain.c
blob
e32df481c2669c12b51ac66c4ee22a8584390317
1
//+---------------------------------------------------------------------------
2
3
#include <windows.h>
4
5
BOOL WINAPI
DllMain
(
HANDLE hDll
,
DWORD dwReason
,
LPVOID lpReserved
)
6
{
7
return
TRUE
;
8
}
9