diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-02-19 18:36:57 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-02-19 18:36:57 +0000 |
| commit | 5883f09acee11766ef96f8ec4c7e95019a1628c3 (patch) | |
| tree | 92a931c810800422d8814f5fdfe09bb192cb0243 /utils/MTP/MTP_DLL/MTP_DLL.cpp | |
| parent | 28eb803f79348b11f49ed96156edaee0b9b52ae6 (diff) | |
| download | rockbox-5883f09acee11766ef96f8ec4c7e95019a1628c3.zip rockbox-5883f09acee11766ef96f8ec4c7e95019a1628c3.tar.gz rockbox-5883f09acee11766ef96f8ec4c7e95019a1628c3.tar.bz2 rockbox-5883f09acee11766ef96f8ec4c7e95019a1628c3.tar.xz | |
MTP_DLL:
* update license to BSD
* clean some comments
* add README file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20049 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/MTP/MTP_DLL/MTP_DLL.cpp')
| -rw-r--r-- | utils/MTP/MTP_DLL/MTP_DLL.cpp | 41 |
1 files changed, 20 insertions, 21 deletions
diff --git a/utils/MTP/MTP_DLL/MTP_DLL.cpp b/utils/MTP/MTP_DLL/MTP_DLL.cpp index ffd314a..73085af 100644 --- a/utils/MTP/MTP_DLL/MTP_DLL.cpp +++ b/utils/MTP/MTP_DLL/MTP_DLL.cpp @@ -1,22 +1,21 @@ -// MTP_DLL.cpp : Defines the entry point for the DLL application.
-//
-
-#include "stdafx.h"
-#include "MTP_DLL.h"
-
-
-#ifdef _MANAGED
-#pragma managed(push, off)
-#endif
-
-BOOL APIENTRY DllMain( HMODULE hModule,
- DWORD ul_reason_for_call,
- LPVOID lpReserved
- )
-{
- return TRUE;
-}
-
-#ifdef _MANAGED
-#pragma managed(pop)
+/* MTP_DLL.cpp : Defines the entry point for the DLL application. */ + +#include "stdafx.h" +#include "MTP_DLL.h" + + +#ifdef _MANAGED +#pragma managed(push, off) +#endif + +BOOL APIENTRY DllMain( HMODULE hModule, + DWORD ul_reason_for_call, + LPVOID lpReserved + ) +{ + return TRUE; +} + +#ifdef _MANAGED +#pragma managed(pop) #endif
\ No newline at end of file |