Plasma.tex button table: add the conditional third column for targets with HAVEREMOTE...
[kugel-rb.git] / utils / MTP / MTP_DLL / MTP_DLL.h
blob6faab846191948070f4533f9c0e89a5600d51727
2 #ifndef MTP_DLL_H
3 #define MTP_DLL_H
5 #ifndef MTP_NODLL
6 #ifdef MTP_DLL_EXPORTS
7 #define MTP_DLL_API __declspec(dllexport)
8 #else
9 #define MTP_DLL_API __declspec(dllimport)
10 #endif
11 #else
12 #define MTP_DLL_API
13 #endif
15 #ifdef __cplusplus
16 extern "C"
18 #endif
19 MTP_DLL_API int mtp_sendnk(LPWSTR file, int filesize, void (*callback)(unsigned int progress, unsigned int max));
20 MTP_DLL_API int mtp_description(wchar_t* name, wchar_t* manufacturer, DWORD* version);
21 #ifdef __cplusplus
23 #endif
25 #endif