Commit 0666ac3e authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

shell32: Use BOOL type where appropriate.

parent 411ef80a
...@@ -58,7 +58,7 @@ BOOL HCR_MapTypeToValueW(LPCWSTR szExtension, LPWSTR szFileType, LONG len, BOOL ...@@ -58,7 +58,7 @@ BOOL HCR_MapTypeToValueW(LPCWSTR szExtension, LPWSTR szFileType, LONG len, BOOL
/* added because we do not want to have double dots */ /* added because we do not want to have double dots */
if (szExtension[0] == '.') if (szExtension[0] == '.')
bPrependDot = 0; bPrependDot = FALSE;
if (bPrependDot) if (bPrependDot)
szTemp[0] = '.'; szTemp[0] = '.';
...@@ -92,7 +92,7 @@ BOOL HCR_MapTypeToValueA(LPCSTR szExtension, LPSTR szFileType, LONG len, BOOL bP ...@@ -92,7 +92,7 @@ BOOL HCR_MapTypeToValueA(LPCSTR szExtension, LPSTR szFileType, LONG len, BOOL bP
/* added because we do not want to have double dots */ /* added because we do not want to have double dots */
if (szExtension[0] == '.') if (szExtension[0] == '.')
bPrependDot = 0; bPrependDot = FALSE;
if (bPrependDot) if (bPrependDot)
szTemp[0] = '.'; szTemp[0] = '.';
......
...@@ -711,7 +711,7 @@ static void Control_DoLaunch(CPanel* panel, HWND hWnd, LPCWSTR wszCmd) ...@@ -711,7 +711,7 @@ static void Control_DoLaunch(CPanel* panel, HWND hWnd, LPCWSTR wszCmd)
signed sp = -1; signed sp = -1;
LPWSTR extraPmtsBuf = NULL; LPWSTR extraPmtsBuf = NULL;
LPWSTR extraPmts = NULL; LPWSTR extraPmts = NULL;
int quoted = 0; BOOL quoted = FALSE;
CPlApplet *applet; CPlApplet *applet;
buffer = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(wszCmd) + 1) * sizeof(*wszCmd)); buffer = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(wszCmd) + 1) * sizeof(*wszCmd));
...@@ -746,7 +746,7 @@ static void Control_DoLaunch(CPanel* panel, HWND hWnd, LPCWSTR wszCmd) ...@@ -746,7 +746,7 @@ static void Control_DoLaunch(CPanel* panel, HWND hWnd, LPCWSTR wszCmd)
if (extraPmtsBuf != NULL) if (extraPmtsBuf != NULL)
{ {
beg = end = extraPmtsBuf; beg = end = extraPmtsBuf;
quoted = 0; quoted = FALSE;
for (;;) { for (;;) {
ch = *end; ch = *end;
......
...@@ -209,7 +209,7 @@ static BOOL OleStrToStrNW (LPWSTR lpwStr, INT nwStr, LPCWSTR lpOle, INT nOle) ...@@ -209,7 +209,7 @@ static BOOL OleStrToStrNW (LPWSTR lpwStr, INT nwStr, LPCWSTR lpOle, INT nOle)
if (lstrcpynW ( lpwStr, lpOle, nwStr)) if (lstrcpynW ( lpwStr, lpOle, nwStr))
{ return lstrlenW (lpwStr); { return lstrlenW (lpwStr);
} }
return 0; return FALSE;
} }
BOOL WINAPI OleStrToStrNAW (LPVOID lpOut, INT nOut, LPCVOID lpIn, INT nIn) BOOL WINAPI OleStrToStrNAW (LPVOID lpOut, INT nOut, LPCVOID lpIn, INT nIn)
......
...@@ -1138,7 +1138,7 @@ ISFHelper_fnAddFolder (ISFHelper * iface, HWND hwnd, LPCWSTR pwszName, ...@@ -1138,7 +1138,7 @@ ISFHelper_fnAddFolder (ISFHelper * iface, HWND hwnd, LPCWSTR pwszName,
{ {
IGenericSFImpl *This = impl_from_ISFHelper(iface); IGenericSFImpl *This = impl_from_ISFHelper(iface);
WCHAR wszNewDir[MAX_PATH]; WCHAR wszNewDir[MAX_PATH];
DWORD bRes; BOOL bRes;
HRESULT hres = E_FAIL; HRESULT hres = E_FAIL;
TRACE ("(%p)(%s %p)\n", This, debugstr_w(pwszName), ppidlOut); TRACE ("(%p)(%s %p)\n", This, debugstr_w(pwszName), ppidlOut);
......
...@@ -255,7 +255,8 @@ static DWORD get_drive_map(void) ...@@ -255,7 +255,8 @@ static DWORD get_drive_map(void)
'P','o','l','i','c','i','e','s','\\', 'P','o','l','i','c','i','e','s','\\',
'E','x','p','l','o','r','e','r',0}; 'E','x','p','l','o','r','e','r',0};
static const WCHAR nodrivesW[] = {'N','o','D','r','i','v','e','s',0}; static const WCHAR nodrivesW[] = {'N','o','D','r','i','v','e','s',0};
static DWORD drive_mask, init_done; static DWORD drive_mask;
static BOOL init_done = FALSE;
if (!init_done) if (!init_done)
{ {
...@@ -277,7 +278,7 @@ static DWORD get_drive_map(void) ...@@ -277,7 +278,7 @@ static DWORD get_drive_map(void)
RegCloseKey( hkey ); RegCloseKey( hkey );
} }
drive_mask = mask; drive_mask = mask;
init_done = 1; init_done = TRUE;
} }
return GetLogicalDrives() & ~drive_mask; return GetLogicalDrives() & ~drive_mask;
...@@ -626,7 +627,7 @@ static HRESULT WINAPI ISF_MyComputer_fnGetDisplayNameOf (IShellFolder2 *iface, ...@@ -626,7 +627,7 @@ static HRESULT WINAPI ISF_MyComputer_fnGetDisplayNameOf (IShellFolder2 *iface,
static const WCHAR wantsForParsingW[] = static const WCHAR wantsForParsingW[] =
{ 'W','a','n','t','s','F','o','r','P','a','r','s','i','n', { 'W','a','n','t','s','F','o','r','P','a','r','s','i','n',
'g',0 }; 'g',0 };
int bWantsForParsing = FALSE; BOOL bWantsForParsing = FALSE;
WCHAR szRegPath[100]; WCHAR szRegPath[100];
LONG r; LONG r;
......
...@@ -203,7 +203,8 @@ static HRESULT WINAPI ItemMenu_QueryContextMenu( ...@@ -203,7 +203,8 @@ static HRESULT WINAPI ItemMenu_QueryContextMenu(
static void DoOpenExplore(ContextMenu *This, HWND hwnd, LPCSTR verb) static void DoOpenExplore(ContextMenu *This, HWND hwnd, LPCSTR verb)
{ {
UINT i, bFolderFound = FALSE; UINT i;
BOOL bFolderFound = FALSE;
LPITEMIDLIST pidlFQ; LPITEMIDLIST pidlFQ;
SHELLEXECUTEINFOA sei; SHELLEXECUTEINFOA sei;
......
...@@ -282,7 +282,7 @@ BOOL XDG_MakeDirs(const char *path) ...@@ -282,7 +282,7 @@ BOOL XDG_MakeDirs(const char *path)
*/ */
static int dskentry_encode(const char *value, char *output) static int dskentry_encode(const char *value, char *output)
{ {
int only_spc = TRUE; BOOL only_spc = TRUE;
int num_written = 0; int num_written = 0;
const char *c; const char *c;
for (c = value; *c; c++) for (c = value; *c; c++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment