repo.or.cz
/
gdipp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use One-Time Initialization for glyph run caching to avoid duplicate glyph run genera...
[gdipp.git]
/
gdipp_lib
/
gdipp_lib.cpp
blob
e35957cdd737580b55c510898aa1610705eec16d
1
#include
"stdafx.h"
2
#include
"gdipp_lib/helper.h"
3
4
namespace
gdipp
5
{
6
7
BOOL APIENTRY
DllMain
(
HMODULE hModule
,
DWORD ul_reason_for_call
,
LPVOID lpReserved
)
8
{
9
switch
(
ul_reason_for_call
)
10
{
11
case
DLL_PROCESS_ATTACH
:
12
register_minidump_module
(
hModule
);
13
break
;
14
}
15
16
return
TRUE
;
17
}
18
19
}