diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-14 11:40:27 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-14 11:40:27 +0000 |
commit | bf7494126f2ce1f6de9fda7ea1de0d02809be131 (patch) | |
tree | 00724c8e5ae52910224930de05beb6e4feb12926 /plugins/WhoUsesMyFiles/src/wumf.cpp | |
parent | 829c4ca618d393e194f075d641a55c75a58dfa66 (diff) |
plusification
git-svn-id: http://svn.miranda-ng.org/main/trunk@4020 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/WhoUsesMyFiles/src/wumf.cpp')
-rw-r--r-- | plugins/WhoUsesMyFiles/src/wumf.cpp | 11 |
1 files changed, 3 insertions, 8 deletions
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 );
}
|