OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:aHWND
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CPP/Windows/Control/
Dialog.cpp
195
HWND
aHWND
= CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
196
if (
aHWND
== 0)
198
Attach(
aHWND
);
211
HWND
aHWND
;
213
aHWND
= CreateDialogParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this);
225
aHWND
= CreateDialogParamA(g_hInstance, templateNameA, parentWindow, DialogProcedure, (LPARAM)this);
227
if (
aHWND
== 0)
229
Attach(
aHWND
);
Window2.cpp
29
static LRESULT CALLBACK WindowProcedure(HWND
aHWND
, UINT message, WPARAM wParam, LPARAM lParam)
31
CWindow tempWindow(
aHWND
);
36
window->Attach(
aHWND
);
41
return DefWindowProcW(
aHWND
, message, wParam, lParam);
44
return DefWindowProc(
aHWND
, message, wParam, lParam);
Completed in 164 milliseconds