5883f09ace
* 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
10 lines
262 B
C
10 lines
262 B
C
#ifdef MTP_DLL_EXPORTS
|
|
#define MTP_DLL_API __declspec(dllexport)
|
|
#else
|
|
#define MTP_DLL_API __declspec(dllimport)
|
|
#endif
|
|
|
|
extern "C"
|
|
{
|
|
__declspec(dllexport) bool send_fw(LPWSTR file, int filesize, void (*callback)(unsigned int progress, unsigned int max));
|
|
}
|