Home
last modified time | relevance | path

Searched refs:pszDescription (Results 1 – 16 of 16) sorted by relevance

/reactos/dll/win32/syssetup/
H A Dnetinstall.c23 PWSTR pszDescription; member
199 (LPBYTE)pComponentInfo->pszDescription, in CreateInstanceKey()
200 (wcslen(pComponentInfo->pszDescription) + 1) * sizeof(WCHAR)); in CreateInstanceKey()
331 pComponentInfo->pszDescription = HeapAlloc(GetProcessHeap(), in CheckInfFile()
334 if (pComponentInfo->pszDescription) in CheckInfFile()
338 pComponentInfo->pszDescription, in CheckInfFile()
483 DPRINT("Description: %S\n", ComponentInfo.pszDescription); in InstallNetworkComponent()
519 if (ComponentInfo.pszDescription) in InstallNetworkComponent()
520 HeapFree(GetProcessHeap(), 0, ComponentInfo.pszDescription); in InstallNetworkComponent()
H A Dinstall.c122 LPCWSTR pszDescription, in CreateShortcut() argument
179 pszDescription)); in CreateShortcut()
/reactos/base/services/w32time/
H A Dregister.c49 PWSTR pszDisplayName = NULL, pszDescription = NULL; in RegisterService() local
72 pszDescription = ReadString(IDS_DESCRIPTION); in RegisterService()
73 if (pszDescription == NULL) in RegisterService()
96 ServiceDescription.lpDescription = pszDescription; in RegisterService()
160 if (pszDescription) in RegisterService()
161 HeapFree(GetProcessHeap(), 0, pszDescription); in RegisterService()
/reactos/modules/rostests/apitests/shell32/
H A DSHGetComputerDisplayNameW.cpp65 _In_ PCWSTR pszDescription) in SHELL_BuildDisplayMachineName() argument
67 if (!pszDescription || !*pszDescription) in SHELL_BuildDisplayMachineName()
71 PCWSTR args[] = { pszDescription , SHELL_SkipServerSlashes(pszServerName) }; in SHELL_BuildDisplayMachineName()
/reactos/dll/cpl/powercfg/
H A Dpowershemes.c20 LPTSTR pszDescription; member
70 LPWSTR pszDescription, in AddPowerScheme() argument
98 pScheme->pszDescription = HeapAlloc(GetProcessHeap(), in AddPowerScheme()
101 if (pScheme->pszDescription == NULL) in AddPowerScheme()
104 _tcscpy(pScheme->pszDescription, pszDescription); in AddPowerScheme()
116 if (pScheme->pszDescription) in AddPowerScheme()
117 HeapFree(GetProcessHeap(), 0, pScheme->pszDescription); in AddPowerScheme()
137 if (pScheme->pszDescription) in DeletePowerScheme()
138 HeapFree(GetProcessHeap(), 0, pScheme->pszDescription); in DeletePowerScheme()
615 pScheme->pszDescription, in SavePowerScheme()
/reactos/sdk/tools/mkshelllink/
H A Dmkshelllink.c184 const char *pszDescription = NULL; in main() local
207 pszDescription = argv[++i]; in main()
261 if (pszDescription) in main()
382 uhTmp = strlen(pszDescription); in main()
384 fputs(pszDescription, pFile); in main()
/reactos/dll/win32/netcfgx/
H A Dpropertypage.c30 PWSTR pszDescription; member
87 if (ParamArray->Array[i].pszDescription != NULL) in FreeParameterArray()
88 HeapFree(GetProcessHeap(), 0, ParamArray->Array[i].pszDescription); in FreeParameterArray()
539 &ParamArray->Array[dwIndex].pszDescription, in BuildParameterArray()
971 if (pParamArray->Array[i].pszDescription != NULL) in OnInitDialog()
972 pszText = pParamArray->Array[i].pszDescription; in OnInitDialog()
/reactos/dll/win32/oleacc/
H A Dclient.c199 VARIANT varID, BSTR *pszDescription) in Client_get_accDescription() argument
203 TRACE("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszDescription); in Client_get_accDescription()
205 *pszDescription = NULL; in Client_get_accDescription()
H A Dwindow.c157 VARIANT varID, BSTR *pszDescription) in Window_get_accDescription() argument
160 FIXME("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszDescription); in Window_get_accDescription()
/reactos/win32ss/printing/base/winspool/
H A Dprinters.c1422 PSTR pszDescription = NULL; in EnumPrintersA() local
1502 pszDescription = HeapAlloc(hProcessHeap, 0, (cch + 1) * sizeof(CHAR)); in EnumPrintersA()
1503 if (!pszDescription) in EnumPrintersA()
1511 StringCchCopyA(ppi1a[i].pDescription, cch + 1, pszDescription); in EnumPrintersA()
1513 HeapFree(hProcessHeap, 0, pszDescription); in EnumPrintersA()
2101 PSTR pszDescription; in GetPrinterA() local
2106 pszDescription = HeapAlloc(hProcessHeap, 0, (cch + 1) * sizeof(CHAR)); in GetPrinterA()
2107 if (!pszDescription) in GetPrinterA()
2114 … WideCharToMultiByte(CP_ACP, 0, ppi1w->pDescription, -1, pszDescription, cch + 1, NULL, NULL); in GetPrinterA()
2115 StringCchCopyA(ppi1a->pDescription, cch + 1, pszDescription); in GetPrinterA()
[all …]
/reactos/dll/win32/shell32/
H A Dutils.cpp1969 _In_ PCWSTR pszDescription) in SHELL_BuildDisplayMachineName() argument
1971 if (!pszDescription || !*pszDescription) in SHELL_BuildDisplayMachineName()
1975 PCWSTR args[] = { pszDescription , SHELL_SkipServerSlashes(pszServerName) }; in SHELL_BuildDisplayMachineName()
/reactos/dll/win32/shdocvw/
H A DCNSCBand.cpp52 _In_opt_ LPCWSTR pszDescription) in SHDOCVW_CreateShortcut() argument
64 if (pszDescription) in SHDOCVW_CreateShortcut()
65 psl->SetDescription(pszDescription); in SHDOCVW_CreateShortcut()
/reactos/modules/rostests/winetests/shell32/
H A Dshellpath.c2052 trace(" description: %s\n", wine_dbgstr_w(kfd.pszDescription)); in check_known_folder()
2234 kfDefinition.pszDescription = CoTaskMemAlloc(sizeof(sExample)); in test_knownFolders()
2235 lstrcpyW(kfDefinition.pszDescription, sExample); in test_knownFolders()
2270 kfSubDefinition.pszDescription = CoTaskMemAlloc(sizeof(sSubFolder)); in test_knownFolders()
2271 lstrcpyW(kfSubDefinition.pszDescription, sSubFolder); in test_knownFolders()
/reactos/modules/rostests/winetests/oleacc/
H A Dmain.c164 VARIANT varID, BSTR *pszDescription) in Accessible_get_accDescription() argument
/reactos/dll/win32/browseui/
H A Dshellbrowser.cpp3880 IN LPCWSTR pszDescription OPTIONAL) in CreateShortcut()
3894 if (pszDescription) in CreateShortcut()
3895 pSL->SetDescription(pszDescription); in CreateShortcut()
/reactos/sdk/include/psdk/
H A Dshobjidl.idl2201 [in, unique, string] LPCWSTR pszDescription);
4021 LPWSTR pszDescription;
4152 cpp_quote(" CoTaskMemFree(pKFD->pszDescription);")