From bf7494126f2ce1f6de9fda7ea1de0d02809be131 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Thu, 14 Mar 2013 11:40:27 +0000 Subject: plusification git-svn-id: http://svn.miranda-ng.org/main/trunk@4020 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/WhoUsesMyFiles/src/wumf.cpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'plugins/WhoUsesMyFiles/src/wumf.cpp') diff --git a/plugins/WhoUsesMyFiles/src/wumf.cpp b/plugins/WhoUsesMyFiles/src/wumf.cpp index cac2a452df..8eeb2308e0 100644 --- a/plugins/WhoUsesMyFiles/src/wumf.cpp +++ b/plugins/WhoUsesMyFiles/src/wumf.cpp @@ -7,11 +7,6 @@ static PWumf list = NULL; static PWumf lst = NULL; -extern WUMF_OPTIONS WumfOptions; -extern HANDLE hInst; -extern HWND hDlg; -extern char ModuleName[]; - HANDLE hLog = INVALID_HANDLE_VALUE; BOOL wumf(); @@ -297,7 +292,7 @@ void process_file(SESSION_INFO_1 s_info, FILE_INFO_3 f_info) PWumf w = fnd_cell(&list, f_info.fi3_id); if(!w) { - w = new_wumf(f_info.fi3_id, f_info.fi3_username, f_info.fi3_pathname, s_info.sesi1_cname, NULL, 0, f_info.fi3_permissions, GetFileAttributes(f_info.fi3_pathname)); + w = new_wumf(f_info.fi3_id, (LPSTR)f_info.fi3_username, (LPSTR)f_info.fi3_pathname, (LPSTR)s_info.sesi1_cname, NULL, 0, f_info.fi3_permissions, GetFileAttributes((LPSTR)f_info.fi3_pathname)); w->mark = FALSE; if(!add_cell(&list, w)){ msg("Error memory allocation"); @@ -313,8 +308,8 @@ void printError(DWORD res) { LPVOID lpMsgBuf; FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM|FORMAT_MESSAGE_IGNORE_INSERTS, NULL, res, 0, (LPTSTR) &lpMsgBuf, 0, NULL ); - OutputDebugString(lpMsgBuf); - msg(lpMsgBuf); + OutputDebugString((LPCTSTR)lpMsgBuf); + msg((LPCTSTR)lpMsgBuf); LocalFree( lpMsgBuf ); } -- cgit v1.2.3