Home
last modified time | relevance | path

Searched refs:templateName (Results 1 – 3 of 3) sorted by relevance

/third_party/lzma/CPP/Windows/Control/
DDialog.cpp388 bool CModelessDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create() argument
390 …const HWND aHWND = CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LP… in Create()
397 INT_PTR CModalDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create() argument
399 return DialogBoxParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this); in Create()
404 bool CModelessDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create() argument
408 …aHWND = CreateDialogParamW(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)this); in Create()
413 if (IS_INTRESOURCE(templateName)) in Create()
414 templateNameA = (LPCSTR)templateName; in Create()
417 name = GetSystemString(templateName); in Create()
428 INT_PTR CModalDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create() argument
[all …]
DDialog.h154 bool Create(LPCTSTR templateName, HWND parentWindow);
157 bool Create(LPCWSTR templateName, HWND parentWindow);
167 INT_PTR Create(LPCTSTR templateName, HWND parentWindow);
170 INT_PTR Create(LPCWSTR templateName, HWND parentWindow);
/third_party/musl/libc-test/src/functionalext/supplement/temp/temp_gtest/
Dtemp_mkostemps64_test.cpp17 char templateName[] = "/tmp/mytempXXXXXX"; variable
21 int fd = mkostemps64(templateName, suffixlen, flags);
24 remove(templateName);