From eebde2a3676f7dd11011fabd7c4d74f0cb6532d5 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Mon, 8 Jun 2009 18:04:10 +0000 Subject: Major W32 beastpatcher rework (FS#10220). Update beastpatcher to scan for the device separately, rework MTP_DLL and modify to allow building with VS2005. - include pstdint.h when building with VS2005 as VS doesn't have inttypes.h - don't use bool in the DLL as VS doesn't support type bool in C. - rearrange DLL files to avoid filename ambiguities with sendfirm. - include MTP_DLL.h instead of duplicating prototypes. Adjust header for easy inclusion. - make MTP_DLL project file also copy the resulting dll to MTP folder for convenience. - extend MTP_DLL API for separate device scanning. Note that this (intentionally) breaks compatibility of the dll. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21221 a1c6a512-1295-4272-9138-f99709370657 --- utils/MTP/sendfirm_win.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'utils/MTP/sendfirm_win.c') diff --git a/utils/MTP/sendfirm_win.c b/utils/MTP/sendfirm_win.c index c16a7ab68b..3c45aa6ae7 100644 --- a/utils/MTP/sendfirm_win.c +++ b/utils/MTP/sendfirm_win.c @@ -19,7 +19,6 @@ * ****************************************************************************/ -#define LPWSTR wchar_t* #include #include @@ -27,8 +26,9 @@ #include #include #include +#include -extern __declspec(dllimport) bool send_fw(LPWSTR file, int filesize, void (*callback)(unsigned int progress, unsigned int max)); +#include "MTP_DLL/MTP_DLL.h" void usage(void) { @@ -76,7 +76,7 @@ int main(int argc, char **argv) fprintf(stdout, "Sending firmware...\n"); - if(send_fw(tmp, filesize(argv[1]), &callback)) + if(mtp_sendnk(tmp, filesize(argv[1]), &callback)) fprintf(stdout, "Firmware sent successfully!\n"); else fprintf(stdout, "Error occured during sending!\n"); -- cgit v1.2.3