1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
|
//
// Copyright (C) Microsoft Corporation 2005
// IHV UI Extension sample
//
#include "precomp.h"
#include "ihvsample_i.c"
extern HINSTANCE g_hInst;
LPWSTR g_IHVAuthFriendlyName[] = {
L"IHVAuth V1",
L"IHVAuth V2",
L"IHVAuth V3"
};
LPWSTR g_IHVCipherFriendlyName[] = {
L"None",
L"IHVCipher 1",
L"IHVCipher 2",
L"IHVCipher 3"
};
IHV_AUTH_CIPHER_CAPABILITY g_IHVOneXExtCapability =
{
3,
{
{
IHVAuthV1,
1,
{IHVCipher1}
},
{
IHVAuthV2,
3,
{None, IHVCipher1, IHVCipher2}
},
{
IHVAuthV3,
2,
{IHVCipher2, IHVCipher3}
}
}
};
static const WCHAR c_szIhvUIRequest[] = L"_UI_Request";
static const WCHAR c_szIhvUIResponse[] = L"_UI_Response";
template<typename T>
T* GetThis(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
static const WCHAR c_szThisPointer[]= L"_Win32_this_";
UNREFERENCED_PARAMETER(wParam);
T* pThis = NULL;
if (uMsg == WM_INITDIALOG)
{
if (sizeof(PROPSHEETPAGE) == ((LPPROPSHEETPAGE)lParam)->dwSize)
{
// This corresponds to MSDN
pThis = (T *)((LPPROPSHEETPAGE)lParam)->lParam;
}
else
{
// TODO: Need to determine when this abnormality happens...
pThis = (T *)lParam;
}
SetProp(hwnd, c_szThisPointer, (HANDLE)pThis);
}
else if (uMsg == WM_DESTROY)
{
RemoveProp(hwnd, c_szThisPointer);
}
else
{
pThis = (T *)GetProp(hwnd, c_szThisPointer);
}
return pThis;
}
CDot11SampleExtUI::CDot11SampleExtUI(): m_crefCount(0)
{
InterlockedIncrement(&g_objRefCount);
m_pUnkSite = NULL;
m_hFirstPagePsp = NULL;
m_hLastPagePsp = NULL;
m_pUIRequest = NULL;
}
CDot11SampleExtUI::~CDot11SampleExtUI()
{
InterlockedDecrement(&g_objRefCount);
if( m_pUIRequest)
{
delete m_pUIRequest;
}
if( m_pUnkSite)
{
m_pUnkSite ->Release();
m_pUnkSite = NULL;
}
}
// Used to get the IHV friendly name
STDMETHODIMP
CDot11SampleExtUI::GetDot11ExtUIFriendlyName(
BSTR* bstrFriendlyName)
{
HRESULT hr = E_INVALIDARG;
if (NULL != bstrFriendlyName)
{
*bstrFriendlyName = SysAllocString(IHV_SAMPLE_IHV_NAME);
hr = S_OK;
}
return hr;
}
// Returns the requested property type
STDMETHODIMP
CDot11SampleExtUI::GetDot11ExtUIProperties(
DOT11_EXT_UI_PROPERTY_TYPE ExtType,
ULONG *pcExtensions,
IDot11ExtUIProperty **ppDot11ExtUIProperty
)
{
HRESULT hr = S_OK;
if (!pcExtensions || !ppDot11ExtUIProperty)
{
hr = E_INVALIDARG;
goto error;
}
// Initialize the out parameters
*pcExtensions = 0;
*ppDot11ExtUIProperty = NULL;
switch(ExtType)
{
case DOT11_EXT_UI_CONNECTION:
hr = CreateConnectionProperties(pcExtensions, ppDot11ExtUIProperty);
break;
case DOT11_EXT_UI_SECURITY:
hr = CreateSecurityProperties(pcExtensions, ppDot11ExtUIProperty);
break;
case DOT11_EXT_UI_KEYEXTENSION:
hr = CreateKeyProperties(pcExtensions, ppDot11ExtUIProperty);
break;
default:
hr = E_NOTIMPL;
break;
}
error:
return hr;
}
#define IHV_BALLOON_TEXT L"Please enter key information"
STDMETHODIMP
CDot11SampleExtUI::GetDot11ExtUIBalloonText(
BSTR pIHVUIRequest, // the UI request structure from IHV
BSTR* pwszBalloonText // the balloon text to be displayed
)
{
HRESULT hr = E_INVALIDARG;
PDOT11EXT_IHV_UI_REQUEST pIhvUiRequest = (PDOT11EXT_IHV_UI_REQUEST) pIHVUIRequest;
if (NULL != pwszBalloonText)
{
// Ihv could choose to parse the UI request data here ...
UNREFERENCED_PARAMETER( pIhvUiRequest );
*pwszBalloonText = SysAllocString( IHV_BALLOON_TEXT );
hr = S_OK;
}
return hr;
}
HRESULT
CDot11SampleExtUI::CreateConnectionProperties(
ULONG *pcExtensions,
IDot11ExtUIProperty **ppDot11ExtUIProperty
)
{
HRESULT hr = ERROR_SUCCESS;
BSTR strName = NULL;
ULONG uCount = 0;
IDot11SampleExtUIConProperty **pprgProps = NULL;
uCount = PROP_COUNT_CONNECTION;
pprgProps = (IDot11SampleExtUIConProperty**)
CoTaskMemAlloc(sizeof(IDot11SampleExtUIConProperty*) * uCount);
if (!pprgProps)
{
hr = E_UNEXPECTED;
goto error;
}
// Since we just have one property of each, we'll
// create one interface first and initialize it separately
IDot11SampleExtUIConProperty *pTempIProp = NULL;
hr = CoCreateInstance(
GUID_SAMPLE_IHVUI_CLSID,
NULL,
CLSCTX_INPROC,
IID_IDot11SampleExtUIConProperty,
(PVOID*)&pTempIProp
);
if (FAILED(hr))
{
goto error;
}
// this will probably never be displayed
strName = SysAllocString(L"IHV Connection Settings");
hr = pTempIProp->Initialize(strName);
pprgProps[0] = pTempIProp;
if (SUCCEEDED(hr))
{
*pcExtensions = uCount;
*ppDot11ExtUIProperty = (IDot11ExtUIProperty*)pprgProps;
// Set the current pointer to NULL so it doesn't get freed at the bottom
pprgProps = NULL;
}
error:
if (FAILED(hr) && pprgProps)
{
CoTaskMemFree(pprgProps);
pprgProps = NULL;
}
SysFreeString(strName);
return hr;
}
HRESULT
CDot11SampleExtUI::CreateSecurityProperties(
ULONG *pcExtensions,
IDot11ExtUIProperty **ppDot11ExtUIProperty
)
{
HRESULT hr = ERROR_SUCCESS;
BSTR strName = NULL;
ULONG uCount = 0;
DWORD i = 0;
WCHAR wbuf[128];
IDot11SampleExtUISecProperty **pprgProps = NULL;
uCount = PROP_COUNT_SECURITY;
pprgProps = (IDot11SampleExtUISecProperty**)
CoTaskMemAlloc(sizeof(IDot11SampleExtUISecProperty*) * uCount);
if (!pprgProps)
{
hr = E_UNEXPECTED;
goto error;
}
// Since we just have one property of each, we'll
// create one interface first and initialize it separately
IDot11SampleExtUISecProperty *pTempIProp = NULL;
for (i = 0; i < uCount; ++i)
{
ZeroMemory(
wbuf,
128
);
pTempIProp = NULL;
SysFreeString(strName);
strName = NULL;
hr = CoCreateInstance(
GUID_SAMPLE_IHVUI_CLSID,
NULL,
CLSCTX_INPROC,
IID_IDot11SampleExtUISecProperty,
(PVOID*)&pTempIProp
);
if (FAILED(hr))
{
continue;
}
StringCchPrintf(
wbuf,
128,
wstrSecurityTypes[i]
);
strName = SysAllocString(wbuf);
hr = pTempIProp->Initialize(strName, i);
pprgProps[i] = pTempIProp;
}
if (SUCCEEDED(hr))
{
*pcExtensions = uCount;
*ppDot11ExtUIProperty = (IDot11ExtUIProperty*)pprgProps;
// Set the current pointer to NULL so it doesn't get freed at the bottom
pprgProps = NULL;
}
error:
if (FAILED(hr) && pprgProps)
{
CoTaskMemFree(pprgProps);
pprgProps = NULL;
}
SysFreeString(strName);
return hr;
}
HRESULT
CDot11SampleExtUI::CreateKeyProperties(
ULONG *pcExtensions,
IDot11ExtUIProperty **ppDot11ExtUIProperty
)
{
HRESULT hr = ERROR_SUCCESS;
BSTR strName = NULL;
ULONG uCount = 0;
DWORD i = 0;
WCHAR wbuf[128];
IDot11SampleExtUIKeyProperty **pprgProps = NULL;
uCount = g_IHVOneXExtCapability.dwAuthCount;
pprgProps = (IDot11SampleExtUIKeyProperty**)
CoTaskMemAlloc(sizeof(IDot11SampleExtUIKeyProperty*) * uCount);
if (!pprgProps)
{
hr = E_UNEXPECTED;
goto error;
}
// Since we just have one property of each, we'll
// create one interface first and initialize it separately
IDot11SampleExtUIKeyProperty *pTempIProp = NULL;
for (i = 0; i < uCount; ++i)
{
ZeroMemory(
wbuf,
128
);
pTempIProp = NULL;
SysFreeString(strName);
strName = NULL;
hr = CoCreateInstance(
GUID_SAMPLE_IHVUI_CLSID,
NULL,
CLSCTX_INPROC,
IID_IDot11SampleExtUIKeyProperty,
(PVOID*)&pTempIProp
);
if (FAILED(hr))
{
continue;
}
StringCchPrintf(
wbuf,
128,
g_IHVAuthFriendlyName[g_IHVOneXExtCapability.IhvAuthCiphers[i].IHVAuth]
);
strName = SysAllocString(wbuf);
hr = pTempIProp->Initialize((BYTE *) &(g_IHVOneXExtCapability.IhvAuthCiphers[i]));
pprgProps[i] = pTempIProp;
}
if (SUCCEEDED(hr))
{
*pcExtensions = uCount;
*ppDot11ExtUIProperty = (IDot11ExtUIProperty*)pprgProps;
// Set the current pointer to NULL so it doesn't get freed at the bottom
pprgProps = NULL;
}
error:
if (FAILED(hr) && pprgProps)
{
CoTaskMemFree(pprgProps);
pprgProps = NULL;
}
SysFreeString(strName);
return hr;
}
HRESULT
CDot11SampleExtUI::FinalConstruct()
{
m_pUnkSite = NULL;
m_hFirstPagePsp = NULL;
m_hLastPagePsp = NULL;
m_pUIRequest = NULL;
return S_OK;
}
VOID
CDot11SampleExtUI::FinalRelease()
{
if( m_pUnkSite)
{
m_pUnkSite ->Release();
m_pUnkSite = NULL;
}
if( m_pUIRequest)
{
delete m_pUIRequest;
m_pUIRequest = NULL;
}
}
// IObjectWithSite
STDMETHODIMP
CDot11SampleExtUI::SetSite (
IUnknown* pUnkSite
)
{
if( m_pUnkSite)
m_pUnkSite ->Release();
m_pUnkSite = pUnkSite;
if( m_pUnkSite)
m_pUnkSite ->AddRef();
return S_OK;
}
STDMETHODIMP
CDot11SampleExtUI::GetSite (
REFIID riid,
void** ppvSite
)
{
*ppvSite = NULL;
if( m_pUnkSite == NULL)
return E_FAIL;
return m_pUnkSite ->QueryInterface(riid, ppvSite);
}
//IWizardExtension
STDMETHODIMP CDot11SampleExtUI::AddPages (
HPROPSHEETPAGE* aPages,
UINT cPages,
UINT *pnPagesAdded
)
{
IPropertyBag *pIPropertyBag = NULL;
UNREFERENCED_PARAMETER(cPages);
HRESULT hr = m_pUnkSite->QueryInterface(IID_IPropertyBag,
(VOID **)&pIPropertyBag);
if (SUCCEEDED(hr))
{
VARIANT v;
VariantInit(&v);
WCHAR ihvKeyName[IHV_KEY_LENGTH];
GetClsidPropertyName (
& GUID_SAMPLE_IHVUI_CLSID,
(LPWSTR) c_szIhvUIRequest,
ihvKeyName,
IHV_KEY_LENGTH
);
hr = pIPropertyBag->Read(
ihvKeyName,
&v,
NULL);
if (SUCCEEDED(hr) && (VT_BSTR == V_VT(&v)))
{
if( m_pUIRequest == NULL)
{
m_pUIRequest = new(std::nothrow) IHV_UI_REQUEST;
if (m_pUIRequest == NULL)
{
VariantClear(&v);
pIPropertyBag->Release();
return E_OUTOFMEMORY;
}
}
memcpy(m_pUIRequest, v.bstrVal, sizeof(IHV_UI_REQUEST));
}
VariantClear(&v);
pIPropertyBag->Release();
}
////////////////
*pnPagesAdded = 0;
PROPSHEETPAGE psp = {0};
psp.dwSize = sizeof( psp);
psp.hInstance = g_hInst;
psp.dwFlags = PSP_DEFAULT | PSP_USETITLE | PSP_USEHEADERTITLE;
psp.lParam = (LPARAM) this;
psp.pszTemplate = MAKEINTRESOURCE(IDD_DIALOG_SHOWHELP);
psp.pfnDlgProc = (DLGPROC) CDot11SampleExtUI::HelpDlgProc;
psp.pszHeaderTitle = MAKEINTRESOURCE( IDS_TITLE_SHOWHELP);
m_hFirstPagePsp = CreatePropertySheetPage(& psp);
psp.pszTemplate = MAKEINTRESOURCE(IDD_DIALOG_GETKEY);
psp.pfnDlgProc = (DLGPROC) CDot11SampleExtUI::GetKeyDlgProc;
psp.pszHeaderTitle = MAKEINTRESOURCE( IDS_TITLE_GETKEY);
HPROPSHEETPAGE hPsp= CreatePropertySheetPage(& psp);
psp.pszTemplate = MAKEINTRESOURCE(IDD_DIALOG_LASTPAGE);
psp.pfnDlgProc = (DLGPROC) CDot11SampleExtUI::LastPageDlgProc;
psp.pszHeaderTitle = MAKEINTRESOURCE( IDS_TITLE_LASTPAGE);
m_hLastPagePsp = CreatePropertySheetPage(& psp);
if( m_hFirstPagePsp
&& hPsp
&& m_hLastPagePsp)
{
aPages[0] = m_hFirstPagePsp;
aPages[1] = hPsp;
aPages[2] = m_hLastPagePsp;
*pnPagesAdded = 3;
return S_OK;
}
else
{
if(m_hFirstPagePsp)
{
DestroyPropertySheetPage(m_hFirstPagePsp);
}
if(hPsp)
{
DestroyPropertySheetPage(hPsp);
}
if(m_hLastPagePsp)
{
DestroyPropertySheetPage(m_hLastPagePsp);
}
m_hFirstPagePsp = hPsp = m_hLastPagePsp = NULL;
return E_FAIL;
}
}
STDMETHODIMP CDot11SampleExtUI::GetFirstPage (
HPROPSHEETPAGE *phpage
)
{
*phpage = m_hFirstPagePsp;
return S_OK;
}
STDMETHODIMP
CDot11SampleExtUI::GetLastPage (HPROPSHEETPAGE *phpage)
{
* phpage = m_hLastPagePsp;
return S_OK;
}
BOOL CALLBACK
CDot11SampleExtUI::HelpDlgProc (
HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
)
{
CDot11SampleExtUI* pthis = NULL;
switch (uMsg)
{
case WM_INITDIALOG:
{
pthis = GetThis<CDot11SampleExtUI>(hwndDlg, uMsg, wParam, lParam);
if(pthis && pthis->m_pUIRequest)
{
//
// Convert the ANSI string into a WCHAR string and display it
//
int iBufferSize = MultiByteToWideChar(CP_ACP, 0, pthis->m_pUIRequest->title, -1, NULL, 0);
if (iBufferSize > 0)
{
WCHAR *pwszBuffer = new WCHAR[iBufferSize];
if (NULL != pwszBuffer)
{
pwszBuffer[0] = 0;
(VOID)MultiByteToWideChar(CP_ACP, 0, pthis->m_pUIRequest->title, -1, pwszBuffer, iBufferSize);
SetDlgItemText(hwndDlg, IDC_EDIT_HELPER, pwszBuffer);
delete[] pwszBuffer;
}
}
}
}
return TRUE;
case WM_DESTROY:
{
// Don't release our properties here, wait
// rather for Abort or Commit event notifications.
// Then we will have the same values when resurrected.
}
return TRUE;
case WM_NOTIFY:
{
LPNMHDR pnmh = (LPNMHDR) lParam;
switch (pnmh->code)
{
case PSN_SETACTIVE :
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_NEXT);
return TRUE;
case PSN_QUERYCANCEL:
{
IWizardSite *pIWizardSite = NULL;
HRESULT hr = S_OK;
pthis = GetThis<CDot11SampleExtUI>(hwndDlg, uMsg, wParam, lParam);
if(pthis != NULL)
{
hr = pthis->m_pUnkSite->QueryInterface(IID_IWizardSite, (VOID **)&pIWizardSite);
if (SUCCEEDED(hr))
{
HPROPSHEETPAGE hpage = NULL;
hr = pIWizardSite->GetCancelledPage(&hpage);
if (SUCCEEDED(hr))
{
PropSheet_SetCurSel(GetParent(hwndDlg), hpage, 0);
}
pIWizardSite->Release();
}
}
}
return TRUE;
}
}
return FALSE;
}
return FALSE;
}
BOOL CALLBACK
CDot11SampleExtUI::GetKeyDlgProc (
HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
)
{
CDot11SampleExtUI* pthis = NULL;
switch (uMsg)
{
case WM_INITDIALOG:
{
(VOID)GetThis<CDot11SampleExtUI>(hwndDlg, uMsg, wParam, lParam);
}
return TRUE;
case WM_DESTROY:
{
// Don't release our properties here, wait
// rather for Abort or Commit event notifications.
// Then we will have the same values when resurrected.
}
return TRUE;
case WM_NOTIFY:
{
LPNMHDR pnmh = (LPNMHDR) lParam;
switch (pnmh->code)
{
case PSN_SETACTIVE :
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_BACK | PSWIZB_NEXT);
return TRUE;
case PSN_WIZNEXT :
{
WCHAR szBuffer[50 + 1] = {0};
HRESULT hr = S_OK;
IPropertyBag *pIPropertyBag = NULL;
GetDlgItemText(hwndDlg, IDC_EDIT_KEY, szBuffer, 50);
pthis = GetThis<CDot11SampleExtUI>(hwndDlg, uMsg, wParam, lParam);
if(pthis)
{
hr = pthis->m_pUnkSite->QueryInterface(IID_IPropertyBag, (VOID **)&pIPropertyBag);
if (SUCCEEDED(hr))
{
VARIANT v;
VariantInit(&v);
WCHAR ihvKeyName[IHV_KEY_LENGTH] = {0};
pthis->GetClsidPropertyName(
&GUID_SAMPLE_IHVUI_CLSID,
(LPWSTR) c_szIhvUIResponse,
ihvKeyName,
IHV_KEY_LENGTH
);
// Make sure we remove the previous property if any
hr = pIPropertyBag->Read(ihvKeyName, &v, NULL);
VariantClear(&v);
V_VT(&v) = VT_BSTR;
v.bstrVal = SysAllocStringByteLen((LPCSTR)szBuffer, IHV_KEY_LENGTH);
// Write the updated property if any
hr = pIPropertyBag->Write(ihvKeyName, &v);
pIPropertyBag->Release();
//
// hr is not used below
//
hr;
}
}
}
return TRUE;
case PSN_QUERYCANCEL:
{
IWizardSite *pIWizardSite = NULL;
HRESULT hr = S_OK;
pthis = GetThis<CDot11SampleExtUI>(hwndDlg, uMsg, wParam, lParam);
if(pthis)
{
hr = pthis->m_pUnkSite->QueryInterface(IID_IWizardSite,(VOID **)&pIWizardSite);
if (SUCCEEDED(hr))
{
HPROPSHEETPAGE hpage = NULL;
hr = pIWizardSite->GetCancelledPage(&hpage);
if (SUCCEEDED(hr))
{
PropSheet_SetCurSel(GetParent(hwndDlg), hpage, 0);
}
pIWizardSite->Release();
}
}
}
return TRUE;
}
}
return FALSE;
}
return FALSE;
}
BOOL CALLBACK
CDot11SampleExtUI::LastPageDlgProc(
HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
)
{
CDot11SampleExtUI* pthis = NULL;
switch (uMsg)
{
case WM_INITDIALOG:
{
(VOID)GetThis<CDot11SampleExtUI>(hwndDlg, uMsg, wParam, lParam);
}
return TRUE;
case WM_DESTROY:
{
(VOID)GetThis<CDot11SampleExtUI>(hwndDlg, uMsg, wParam, lParam);
}
return TRUE;
case WM_NOTIFY:
{
LPNMHDR pnmh = (LPNMHDR) lParam;
switch (pnmh->code)
{
case PSN_SETACTIVE :
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_BACK | PSWIZB_NEXT);
return TRUE;
case PSN_WIZNEXT :
{
IWizardSite *pIWizardSite = NULL;
HRESULT hr = S_OK;
pthis = GetThis<CDot11SampleExtUI>(hwndDlg, uMsg, wParam, lParam);
if(pthis)
{
hr = pthis->m_pUnkSite->QueryInterface(IID_IWizardSite,(VOID **)&pIWizardSite);
if (SUCCEEDED(hr))
{
HPROPSHEETPAGE hpage = NULL;
hr = pIWizardSite->GetNextPage(&hpage);
if (SUCCEEDED(hr))
{
PropSheet_SetCurSel(GetParent(hwndDlg), hpage, 0);
}
pIWizardSite->Release();
}
}
SetWindowLongPtr(hwndDlg, DWLP_MSGRESULT, (LPARAM)-1);
}
return TRUE;
case PSN_QUERYCANCEL:
{
IWizardSite *pIWizardSite = NULL;
HRESULT hr = S_OK;
pthis = GetThis<CDot11SampleExtUI>(hwndDlg, uMsg, wParam, lParam);
if(pthis)
{
hr = pthis->m_pUnkSite->QueryInterface(IID_IWizardSite,(VOID **)&pIWizardSite);
if (SUCCEEDED(hr))
{
HPROPSHEETPAGE hpage = NULL;
hr = pIWizardSite->GetCancelledPage(&hpage);
if (SUCCEEDED(hr))
{
PropSheet_SetCurSel(GetParent(hwndDlg), hpage, 0);
}
pIWizardSite->Release();
}
}
}
return TRUE;
}
}
return FALSE;
}
return FALSE;
}
HRESULT CDot11SampleExtUI::GetClsidPropertyName (
_In_ const CLSID* pCLSID,
_In_opt_ PCWSTR pwszPropertyName,
_Out_writes_(maxResultLen) PWSTR pwszResultStr,
_In_ UINT maxResultLen)
{
#define MIN_BUFFER_SIZE 50
wchar_t *pwszCLSID = NULL;
wchar_t *pwszKeyName = NULL;
HRESULT hRetCode = S_OK;
size_t iCharCount = 0;
// Sanity
//=======
if( pCLSID == NULL ||
pwszResultStr == NULL ||
maxResultLen < MIN_BUFFER_SIZE
)
{
return E_INVALIDARG;
}
// Convert CLSID to string
//========================
hRetCode = StringFromCLSID(*pCLSID, &pwszCLSID);
if(FAILED(hRetCode))
{
goto Done;
}
// Allocate buffer for entire CLSID\PropertyName string
//=====================================================
iCharCount = wcslen(pwszCLSID) + 1;
if(pwszPropertyName)
{
iCharCount += wcslen(pwszPropertyName);
}
pwszKeyName = new(std::nothrow) wchar_t[iCharCount];
if(pwszKeyName == NULL)
{
hRetCode = E_OUTOFMEMORY;
goto Done;
}
swprintf_s(pwszKeyName, iCharCount, L"%s%s", pwszCLSID, pwszPropertyName ? pwszPropertyName : L"");
// Copy as much as we can to the target buffer
//============================================
wcsncpy_s(pwszResultStr, maxResultLen, pwszKeyName, _TRUNCATE);
Done:
if(pwszKeyName != NULL)
{
delete [] pwszKeyName;
}
if(pwszCLSID != NULL)
{
CoTaskMemFree(pwszCLSID);
}
return hRetCode;
}
|