repo.or.cz
/
maemo-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
struct DIR -> DIR, should fix most if not all reds.
[maemo-rb.git]
/
utils
/
MTP
/
MTP_DLL
/
MTP_DLL.cpp
blob
2d9bbe48cb41a0dc3e1abe597980e0f67c6b8f0b
1
/* MTP_DLL.cpp : Defines the entry point for the DLL application. */
2
3
#include <windows.h>
4
#include
"MTP_DLL.h"
5
6
7
#ifdef _MANAGED
8
#pragma managed(push, off)
9
#endif
10
11
BOOL APIENTRY
DllMain
(
HMODULE hModule
,
12
DWORD ul_reason_for_call
,
13
LPVOID lpReserved
14
)
15
{
16
return
TRUE
;
17
}
18
19
#ifdef _MANAGED
20
#pragma managed(pop)
21
#endif