From: Larry Greenfield Date: Tue, 10 Dec 2002 22:55:08 +0000 (+0000) Subject: windows-wide-char-fix-20021210 X-Git-Tag: openafs-devel-1_3_50~465 X-Git-Url: https://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=7c5798f3902f7329511f127d7f6c8922885da383 windows-wide-char-fix-20021210 include afxpriv.h so we get macros call GetSize() and not GetCount() --- diff --git a/src/WINNT/client_exp/shell_ext.cpp b/src/WINNT/client_exp/shell_ext.cpp index 92ce016..37e0f11 100644 --- a/src/WINNT/client_exp/shell_ext.cpp +++ b/src/WINNT/client_exp/shell_ext.cpp @@ -12,6 +12,7 @@ extern "C" { #include } +#include #include "stdafx.h" #include #include @@ -331,7 +332,7 @@ STDMETHODIMP CShellExt::XMenuExt::InvokeCommand(LPCMINVOKECOMMANDINFO lpici) } break; case IDM_REMOVE_SYMLINK: { - if (files.GetCount()>1) + if (files.GetSize()>1) break; int nChoice = ShowMessageBox(IDS_REALLY_REMOVE_SYMLINK, MB_ICONQUESTION | MB_YESNO, IDS_REALLY_REMOVE_SYMLINK); if (nChoice == IDYES)