Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

shellext: remove redundant 'extern' keywords

Changeset d3baf2802cf5

Parent 142721f4be66

by Adrian Buehlmann

Changes to one file · Browse files at d3baf2802cf5 Showing diff from parent 142721f4be66 Diff from another changeset...

 
5
6
7
8
9
 
 
10
11
12
 
5
6
7
 
 
8
9
10
11
12
@@ -5,8 +5,8 @@
 #include <windows.h>  #include <string>   -extern int LocalToWideChar(LPWSTR pWide, LPTSTR pLocal, DWORD dwChars); -extern int WideCharToLocal(LPTSTR pLocal, LPWSTR pWide, DWORD dwChars); +int LocalToWideChar(LPWSTR pWide, LPTSTR pLocal, DWORD dwChars); +int WideCharToLocal(LPTSTR pLocal, LPWSTR pWide, DWORD dwChars);    #define _MBSTR(wstr) hf_wctomb((LPSTR)alloca(wcslen(wstr) + 1), (wstr),wcslen(wstr) + 1)  #define _WCSTR(str) hf_mbtowc((LPWSTR)alloca((strlen(str) + 1) * sizeof(WCHAR)),(str),strlen(str) + 1)