ReactOS 0.4.16-dev-937-g7afcd2a
COpenWithDialog Class Reference
Collaboration diagram for COpenWithDialog:

Public Member Functions

 COpenWithDialog (const OPENASINFO *pInfo, COpenWithList *pAppList)
 
 ~COpenWithDialog ()
 
BOOL IsNoOpen (HWND hwnd)
 

Static Public Member Functions

static INT_PTR CALLBACK DialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
 

Private Member Functions

VOID Init (HWND hwnd)
 
VOID AddApp (COpenWithList::SApp *pApp, BOOL bSelected)
 
VOID Browse ()
 
VOID Accept ()
 
COpenWithList::SAppGetCurrentApp ()
 

Static Private Member Functions

static INT_PTR CALLBACK NoOpenDlgProc (HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam)
 

Private Attributes

const OPENASINFOm_pInfo
 
COpenWithListm_pAppList
 
BOOL m_bListAllocated
 
HWND m_hDialog
 
HWND m_hTreeView
 
HTREEITEM m_hRecommend
 
HTREEITEM m_hOther
 
HIMAGELIST m_hImgList
 
BOOL m_bNoOpen
 

Detailed Description

Definition at line 850 of file COpenWithMenu.cpp.

Constructor & Destructor Documentation

◆ COpenWithDialog()

COpenWithDialog::COpenWithDialog ( const OPENASINFO pInfo,
COpenWithList pAppList = NULL 
)

Definition at line 876 of file COpenWithMenu.cpp.

876 :
877 m_pInfo(pInfo), m_pAppList(pAppList), m_hImgList(NULL), m_bNoOpen(FALSE)
878{
879 if (!m_pAppList)
880 {
883 }
884 else
886}
COpenWithList * m_pAppList
HIMAGELIST m_hImgList
const OPENASINFO * m_pInfo
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117

◆ ~COpenWithDialog()

COpenWithDialog::~COpenWithDialog ( )

Definition at line 888 of file COpenWithMenu.cpp.

889{
891 delete m_pAppList;
892 if (m_hImgList)
894}
BOOL WINAPI ImageList_Destroy(HIMAGELIST himl)
Definition: imagelist.c:941

Member Function Documentation

◆ Accept()

VOID COpenWithDialog::Accept ( )
private

Definition at line 1108 of file COpenWithMenu.cpp.

1109{
1111 if (pApp)
1112 {
1113 /* Set programm as default handler */
1115 {
1117 // FIXME: Update DefaultIcon registry
1119 }
1120
1121 /* Execute program */
1124
1125 EndDialog(m_hDialog, 1);
1126 }
1127}
EXTERN_C void WINAPI SHChangeNotify(LONG wEventId, UINT uFlags, LPCVOID dwItem1, LPCVOID dwItem2)
COpenWithList::SApp * GetCurrentApp()
static BOOL Execute(SApp *pApp, LPCWSTR pwszFilePath)
BOOL SetDefaultHandler(SApp *pApp, LPCWSTR pwszFilename)
@ OAIF_EXEC
Definition: shlobj.h:2690
#define SHCNE_ASSOCCHANGED
Definition: shlobj.h:1919
#define SHCNF_FLUSHNOWAIT
Definition: shlobj.h:1937
LPCWSTR pcszFile
Definition: shlobj.h:2701
OPEN_AS_INFO_FLAGS oaifInFlags
Definition: shlobj.h:2703
UINT WINAPI IsDlgButtonChecked(_In_ HWND, _In_ int)
#define BST_CHECKED
Definition: winuser.h:197
BOOL WINAPI EndDialog(_In_ HWND, _In_ INT_PTR)

Referenced by DialogProc().

◆ AddApp()

VOID COpenWithDialog::AddApp ( COpenWithList::SApp pApp,
BOOL  bSelected 
)
private

Definition at line 943 of file COpenWithMenu.cpp.

944{
945 LPCWSTR pwszName = m_pAppList->GetName(pApp);
946 if (!pwszName) return;
947 HICON hIcon = m_pAppList->GetIcon(pApp);
948
949 TRACE("AddApp Cmd %ls Name %ls\n", pApp->wszCmd, pwszName);
950
951 /* Add item to the list */
952 TVINSERTSTRUCT tvins;
953
954 if (pApp->bRecommended)
955 tvins.hParent = tvins.hInsertAfter = m_hRecommend;
956 else
957 tvins.hParent = tvins.hInsertAfter = m_hOther;
958
959 tvins.item.mask = TVIF_TEXT|TVIF_PARAM;
960 tvins.item.pszText = const_cast<LPWSTR>(pwszName);
961 tvins.item.lParam = (LPARAM)pApp;
962
963 if (hIcon)
964 {
965 tvins.item.mask |= TVIF_IMAGE | TVIF_SELECTEDIMAGE;
966 tvins.item.iImage = tvins.item.iSelectedImage = ImageList_AddIcon(m_hImgList, hIcon);
967 }
968
970
971 if (bSelected)
973}
HTREEITEM m_hRecommend
static LPCWSTR GetName(SApp *pApp)
static HICON GetIcon(SApp *pApp)
static HICON
Definition: imagelist.c:80
HICON hIcon
Definition: msconfig.c:44
#define TVIF_TEXT
Definition: commctrl.h:3271
#define TreeView_SelectItem(hwnd, hitem)
Definition: commctrl.h:3486
#define TVINSERTSTRUCT
Definition: commctrl.h:3407
#define TVIF_IMAGE
Definition: commctrl.h:3272
#define ImageList_AddIcon(himl, hicon)
Definition: commctrl.h:415
#define TVIF_PARAM
Definition: commctrl.h:3273
#define TreeView_InsertItem(hwnd, lpis)
Definition: commctrl.h:3417
#define TVIF_SELECTEDIMAGE
Definition: commctrl.h:3276
#define TRACE(s)
Definition: solgame.cpp:4
WCHAR wszCmd[MAX_PATH]
LONG_PTR LPARAM
Definition: windef.h:208
WCHAR * LPWSTR
Definition: xmlstorage.h:184
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185

Referenced by Browse(), and Init().

◆ Browse()

VOID COpenWithDialog::Browse ( )
private

Definition at line 975 of file COpenWithMenu.cpp.

976{
977 WCHAR wszTitle[64];
978 WCHAR wszFilter[256];
979 WCHAR wszPath[MAX_PATH];
981
982 /* Initialize OPENFILENAMEW structure */
983 ZeroMemory(&ofn, sizeof(OPENFILENAMEW));
984 ofn.lStructSize = sizeof(OPENFILENAMEW);
988 ofn.nMaxFile = (sizeof(wszPath) / sizeof(WCHAR));
989 ofn.lpstrFile = wszPath;
990 ofn.lpstrInitialDir = L"%programfiles%";
991
992 /* Init title */
993 if (LoadStringW(shell32_hInstance, IDS_OPEN_WITH, wszTitle, sizeof(wszTitle) / sizeof(WCHAR)))
994 {
995 ofn.lpstrTitle = wszTitle;
996 ofn.nMaxFileTitle = wcslen(wszTitle);
997 }
998
999 /* Init the filter string */
1002 ZeroMemory(wszPath, sizeof(wszPath));
1003
1004 /* Create OpenFile dialog */
1005 if (!GetOpenFileNameW(&ofn))
1006 return;
1007
1008 /* Setup context for insert proc */
1009 COpenWithList::SApp *pApp = m_pAppList->Add(wszPath);
1010 AddApp(pApp, TRUE);
1011}
#define shell32_hInstance
static WCHAR wszFilter[MAX_STRING_LEN *4+6 *3+5]
Definition: wordpad.c:72
VOID AddApp(COpenWithList::SApp *pApp, BOOL bSelected)
SApp * Add(LPCWSTR pwszPath)
#define OFN_EXPLORER
Definition: commdlg.h:104
#define OFN_FILEMUSTEXIST
Definition: commdlg.h:106
#define OFN_PATHMUSTEXIST
Definition: commdlg.h:117
struct tagOFNW OPENFILENAMEW
BOOL WINAPI GetOpenFileNameW(OPENFILENAMEW *ofn)
Definition: filedlg.c:4736
#define MAX_PATH
Definition: compat.h:34
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
#define L(x)
Definition: ntvdm.h:50
#define IDS_OPEN_WITH_FILTER
Definition: shresdef.h:146
#define IDS_OPEN_WITH
Definition: shresdef.h:134
OPENFILENAME ofn
Definition: sndrec32.cpp:56
HWND hwndOwner
Definition: commdlg.h:330
LPCSTR lpstrTitle
Definition: commdlg.h:341
HINSTANCE hInstance
Definition: commdlg.h:331
LPSTR lpstrFile
Definition: commdlg.h:336
DWORD nMaxFileTitle
Definition: commdlg.h:339
DWORD Flags
Definition: commdlg.h:342
LPCSTR lpstrInitialDir
Definition: commdlg.h:340
DWORD lStructSize
Definition: commdlg.h:329
LPCSTR lpstrFilter
Definition: commdlg.h:332
DWORD nMaxFile
Definition: commdlg.h:337
#define ZeroMemory
Definition: winbase.h:1743
int WINAPI LoadStringW(_In_opt_ HINSTANCE hInstance, _In_ UINT uID, _Out_writes_to_(cchBufferMax, return+1) LPWSTR lpBuffer, _In_ int cchBufferMax)
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by DialogProc().

◆ DialogProc()

INT_PTR CALLBACK COpenWithDialog::DialogProc ( HWND  hwndDlg,
UINT  uMsg,
WPARAM  wParam,
LPARAM  lParam 
)
static

Definition at line 1129 of file COpenWithMenu.cpp.

1130{
1131 COpenWithDialog *pThis = reinterpret_cast<COpenWithDialog *>(GetWindowLongPtr(hwndDlg, DWLP_USER));
1132
1133 switch(uMsg)
1134 {
1135 case WM_INITDIALOG:
1136 {
1137 COpenWithDialog *pThis = reinterpret_cast<COpenWithDialog *>(lParam);
1138
1139 pThis->Init(hwndDlg);
1140 return TRUE;
1141 }
1142 case WM_COMMAND:
1143 switch(LOWORD(wParam))
1144 {
1145 case 14004: /* browse */
1146 {
1147 pThis->Browse();
1148 return TRUE;
1149 }
1150 case IDOK: /* ok */
1151 {
1152 pThis->Accept();
1153 return TRUE;
1154 }
1155 case IDCANCEL: /* cancel */
1156 EndDialog(hwndDlg, 0);
1157 return TRUE;
1158 default:
1159 break;
1160 }
1161 break;
1162 case WM_NOTIFY:
1163 switch (((LPNMHDR)lParam)->code)
1164 {
1165 case TVN_SELCHANGED:
1166 EnableWindow(GetDlgItem(hwndDlg, IDOK), pThis->GetCurrentApp() ? TRUE : FALSE);
1167 break;
1168 case NM_DBLCLK:
1169 case NM_RETURN:
1170 pThis->Accept();
1171 break;
1172 }
1173 break;
1174 case WM_CLOSE:
1175 EndDialog(hwndDlg, 0);
1176 return TRUE;
1177 default:
1178 break;
1179 }
1180 return FALSE;
1181}
VOID Init(HWND hwnd)
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
#define LOWORD(l)
Definition: pedump.c:82
#define TVN_SELCHANGED
Definition: commctrl.h:3740
#define NM_DBLCLK
Definition: commctrl.h:131
#define NM_RETURN
Definition: commctrl.h:132
#define WM_NOTIFY
Definition: richedit.h:61
Definition: inflate.c:139
#define GetWindowLongPtr
Definition: treelist.c:73
#define WM_CLOSE
Definition: winuser.h:1624
#define DWLP_USER
Definition: winuser.h:875
#define IDCANCEL
Definition: winuser.h:834
#define WM_COMMAND
Definition: winuser.h:1743
#define WM_INITDIALOG
Definition: winuser.h:1742
HWND WINAPI GetDlgItem(_In_opt_ HWND, _In_ int)
#define IDOK
Definition: winuser.h:833
BOOL WINAPI EnableWindow(_In_ HWND, _In_ BOOL)

Referenced by SHOpenWithDialog().

◆ GetCurrentApp()

COpenWithList::SApp * COpenWithDialog::GetCurrentApp ( )
private

Definition at line 1013 of file COpenWithMenu.cpp.

1014{
1015 TVITEM tvi;
1017 if (!tvi.hItem)
1018 return NULL;
1019
1020 tvi.mask = TVIF_PARAM;
1021 if (!TreeView_GetItem(m_hTreeView, &tvi))
1022 return NULL;
1023
1024 return (COpenWithList::SApp*)tvi.lParam;
1025}
#define TVITEM
Definition: commctrl.h:3370
#define TreeView_GetSelection(hwnd)
Definition: commctrl.h:3478
#define TreeView_GetItem(hwnd, pitem)
Definition: commctrl.h:3495

Referenced by Accept(), and DialogProc().

◆ Init()

VOID COpenWithDialog::Init ( HWND  hwnd)
private

Definition at line 1027 of file COpenWithMenu.cpp.

1028{
1029 TRACE("COpenWithDialog::Init hwnd %p\n", hwnd);
1030
1031 m_hDialog = hwnd;
1033
1034 /* Handle register checkbox */
1035 HWND hRegisterCheckbox = GetDlgItem(hwnd, 14003);
1037 EnableWindow(hRegisterCheckbox, FALSE);
1039 SendMessage(hRegisterCheckbox, BM_SETCHECK, BST_CHECKED, 0);
1041 ShowWindow(hRegisterCheckbox, SW_HIDE);
1042
1043 if (m_pInfo->pcszFile)
1044 {
1045 WCHAR wszBuf[MAX_PATH];
1046 UINT cchBuf;
1047
1048 /* Add filename to label */
1049 cchBuf = GetDlgItemTextW(hwnd, 14001, wszBuf, _countof(wszBuf));
1050 StringCchCopyW(wszBuf + cchBuf, _countof(wszBuf) - cchBuf, PathFindFileNameW(m_pInfo->pcszFile));
1051 SetDlgItemTextW(hwnd, 14001, wszBuf);
1052
1053 /* Load applications from registry */
1054 m_pAppList->Load();
1056
1057 /* Determine if the type of file can be opened directly from the shell */
1058 if (m_pAppList->IsNoOpen() != FALSE)
1059 m_bNoOpen = TRUE;
1060
1061 /* Init treeview */
1062 m_hTreeView = GetDlgItem(hwnd, 14002);
1065
1066 /* If there are some recommendations add parent nodes: Recommended and Others */
1067 UINT cRecommended = m_pAppList->GetRecommendedCount();
1068 if (cRecommended > 0)
1069 {
1070 TVINSERTSTRUCT tvins;
1071 HICON hFolderIcon;
1072
1073 tvins.hParent = tvins.hInsertAfter = TVI_ROOT;
1075 tvins.item.pszText = (LPWSTR)wszBuf;
1076 tvins.item.state = tvins.item.stateMask = TVIS_EXPANDED;
1078 tvins.item.iImage = tvins.item.iSelectedImage = ImageList_AddIcon(m_hImgList, hFolderIcon);
1079
1082
1085 }
1086 else
1088
1089 /* Add all applications */
1090 BOOL bNoAppSelected = TRUE;
1091 COpenWithList::SApp *pAppList = m_pAppList->GetList();
1092 for (UINT i = 0; i < m_pAppList->GetCount(); ++i)
1093 {
1094 if (!COpenWithList::IsHidden(&pAppList[i]))
1095 {
1096 if (bNoAppSelected && (pAppList[i].bRecommended || !cRecommended))
1097 {
1098 AddApp(&pAppList[i], TRUE);
1099 bNoAppSelected = FALSE;
1100 }
1101 else
1102 AddApp(&pAppList[i], FALSE);
1103 }
1104 }
1105 }
1106}
BOOL LoadRecommended(LPCWSTR pwszFilePath)
BOOL IsNoOpen(VOID)
UINT GetRecommendedCount()
static BOOL IsHidden(SApp *pApp)
HIMAGELIST WINAPI ImageList_Create(INT cx, INT cy, UINT flags, INT cInitial, INT cGrow)
Definition: imagelist.c:814
LPWSTR WINAPI PathFindFileNameW(LPCWSTR lpszPath)
Definition: path.c:394
unsigned int BOOL
Definition: ntddk_ex.h:94
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
__int3264 LONG_PTR
Definition: mstsclib_h.h:276
unsigned int UINT
Definition: ndis.h:50
#define TVSIL_NORMAL
Definition: commctrl.h:3448
#define ILC_COLOR32
Definition: commctrl.h:358
#define TVI_ROOT
Definition: commctrl.h:3373
#define TVIS_EXPANDED
Definition: commctrl.h:3289
#define ILC_MASK
Definition: commctrl.h:351
#define TreeView_SetImageList(hwnd, himl, iImage)
Definition: commctrl.h:3452
#define TVIF_STATE
Definition: commctrl.h:3274
@ OAIF_ALLOW_REGISTRATION
Definition: shlobj.h:2688
@ OAIF_HIDE_REGISTRATION
Definition: shlobj.h:2693
@ OAIF_FORCE_REGISTRATION
Definition: shlobj.h:2691
#define IDS_OPEN_WITH_RECOMMENDED
Definition: shresdef.h:192
#define IDI_SHELL_PROGRAMS_FOLDER
Definition: shresdef.h:581
#define IDS_OPEN_WITH_OTHER
Definition: shresdef.h:193
#define _countof(array)
Definition: sndvol32.h:70
STRSAFEAPI StringCchCopyW(STRSAFE_LPWSTR pszDest, size_t cchDest, STRSAFE_LPCWSTR pszSrc)
Definition: strsafe.h:149
#define SetWindowLongPtr
Definition: treelist.c:70
UINT WINAPI GetDlgItemTextW(HWND hDlg, int nIDDlgItem, LPWSTR lpString, int nMaxCount)
Definition: dialog.c:2263
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
#define SW_HIDE
Definition: winuser.h:771
BOOL WINAPI ShowWindow(_In_ HWND, _In_ int)
#define IMAGE_ICON
Definition: winuser.h:212
BOOL WINAPI SetDlgItemTextW(_In_ HWND, _In_ int, _In_ LPCWSTR)
#define BM_SETCHECK
Definition: winuser.h:1924
#define SendMessage
Definition: winuser.h:5855
#define LoadImage
Definition: winuser.h:5827
#define MAKEINTRESOURCE
Definition: winuser.h:591

Referenced by DialogProc().

◆ IsNoOpen()

BOOL COpenWithDialog::IsNoOpen ( HWND  hwnd)

Definition at line 924 of file COpenWithMenu.cpp.

925{
926 /* Only do the actual check if the file type has the 'NoOpen' flag. */
927 if (m_bNoOpen)
928 {
930
931 if (dReturnValue == IDNO)
932 return TRUE;
933 else if (dReturnValue == -1)
934 {
935 ERR("IsNoOpen failed to load dialog box\n");
936 return TRUE;
937 }
938 }
939
940 return FALSE;
941}
#define ERR(fmt,...)
Definition: precomp.h:57
static INT_PTR CALLBACK NoOpenDlgProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam)
#define IDD_NOOPEN
Definition: shresdef.h:530
#define IDNO
Definition: winuser.h:839
#define DialogBox
Definition: winuser.h:5773

Referenced by SHOpenWithDialog().

◆ NoOpenDlgProc()

INT_PTR CALLBACK COpenWithDialog::NoOpenDlgProc ( HWND  hwnd,
UINT  Message,
WPARAM  wParam,
LPARAM  lParam 
)
staticprivate

Definition at line 896 of file COpenWithMenu.cpp.

897{
898 switch(Message)
899 {
900 case WM_INITDIALOG:
901 {
902 return TRUE;
903 }
904 case WM_CLOSE:
906 break;
907 case WM_COMMAND:
908 switch(LOWORD(wParam))
909 {
910 case IDYES:
912 break;
913 case IDNO:
915 break;
916 }
917 break;
918 default:
919 return FALSE;
920 }
921 return TRUE;
922}
static const WCHAR Message[]
Definition: register.c:74
#define IDYES
Definition: winuser.h:838

Referenced by IsNoOpen().

Member Data Documentation

◆ m_bListAllocated

BOOL COpenWithDialog::m_bListAllocated
private

Definition at line 868 of file COpenWithMenu.cpp.

Referenced by COpenWithDialog(), and ~COpenWithDialog().

◆ m_bNoOpen

BOOL COpenWithDialog::m_bNoOpen
private

Definition at line 873 of file COpenWithMenu.cpp.

Referenced by Init(), and IsNoOpen().

◆ m_hDialog

HWND COpenWithDialog::m_hDialog
private

Definition at line 869 of file COpenWithMenu.cpp.

Referenced by Accept(), Browse(), and Init().

◆ m_hImgList

HIMAGELIST COpenWithDialog::m_hImgList
private

Definition at line 872 of file COpenWithMenu.cpp.

Referenced by AddApp(), Init(), and ~COpenWithDialog().

◆ m_hOther

HTREEITEM COpenWithDialog::m_hOther
private

Definition at line 871 of file COpenWithMenu.cpp.

Referenced by AddApp(), and Init().

◆ m_hRecommend

HTREEITEM COpenWithDialog::m_hRecommend
private

Definition at line 870 of file COpenWithMenu.cpp.

Referenced by AddApp(), and Init().

◆ m_hTreeView

HWND COpenWithDialog::m_hTreeView
private

Definition at line 869 of file COpenWithMenu.cpp.

Referenced by AddApp(), GetCurrentApp(), and Init().

◆ m_pAppList

COpenWithList* COpenWithDialog::m_pAppList
private

Definition at line 867 of file COpenWithMenu.cpp.

Referenced by Accept(), AddApp(), Browse(), COpenWithDialog(), Init(), and ~COpenWithDialog().

◆ m_pInfo

const OPENASINFO* COpenWithDialog::m_pInfo
private

Definition at line 866 of file COpenWithMenu.cpp.

Referenced by Accept(), and Init().


The documentation for this class was generated from the following file: