A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita
audio
rust
zig
deno
mpris
rockbox
mpd
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
11BOOL 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