/reactos/dll/win32/shell32/dialogs/ |
H A D | filetypes.cpp | 50 WCHAR IconPath[MAX_PATH]; member 72 IconPath[0] = UNICODE_NULL; in Initialize() 188 return DoExtractIcon(IconPath, iIndex, cx, cy); in DoExtractIcon() 205 StringCbCopyW(Entry->IconPath, sizeof(Entry->IconPath), IconLocation); in GetFileTypeIconsEx() 210 if (ExpandEnvironmentStringsW(IconLocation, Entry->IconPath, _countof(Entry->IconPath))) in GetFileTypeIconsEx() 344 if (!Entry->IconPath[0]) in Normalize() 346 StringCbCopyW(Entry->IconPath, sizeof(Entry->IconPath), g_pszShell32); in Normalize() 773 Entry->IconPath[0] = UNICODE_NULL; in FileTypesDlg_InsertToLV() 1131 StringCbCopyW(pEntry->IconPath, sizeof(pEntry->IconPath), pEditType->szIconPath); in EditTypeDlg_UpdateEntryIcon() 1212 if (!lstrcmpW(pEntry->IconPath, L"%1")) in EditTypeDlg_WriteClass() [all …]
|
/reactos/base/applications/rapps/ |
H A D | appdb.cpp | 296 CPathW IconPath = AppsPath; in RemoveCached() local 297 IconPath += L"icons"; in RemoveCached() 298 DeleteWithWildcard(IconPath, L"*.ico"); in RemoveCached() 308 RemoveDirectoryW(IconPath); in RemoveCached()
|
H A D | appinfo.cpp | 34 CPathW IconPath = BasePath; in CAvailableApplicationInfo() local 35 IconPath += L"icons"; in CAvailableApplicationInfo() 40 IconPath += IconName; in CAvailableApplicationInfo() 45 IconPath += (szIdentifier + L".ico"); in CAvailableApplicationInfo() 48 if (PathFileExistsW(IconPath)) in CAvailableApplicationInfo() 50 szDisplayIcon = (LPCWSTR)IconPath; in CAvailableApplicationInfo()
|
/reactos/dll/win32/msi/ |
H A D | classes.c | 140 progid->IconPath = malloc( (wcslen(FilePath) + 10) * sizeof(WCHAR) ); in load_progid() 141 swprintf( progid->IconPath, lstrlenW(FilePath) + 10, L"%s,%d", FilePath, icon_index ); in load_progid() 148 progid->IconPath = msi_build_icon_path(package, buffer); in load_progid() 238 cls->IconPath = malloc( (wcslen(FilePath) + 5) * sizeof(WCHAR) ); in load_class() 239 swprintf( cls->IconPath, lstrlenW(FilePath) + 5, L"%s,%d", FilePath, icon_index ); in load_class() 246 cls->IconPath = msi_build_icon_path(package, buffer); in load_class() 810 if (cls->IconPath) in ACTION_RegisterClassInfo() 811 msi_reg_set_subkey_val( hkey2, L"DefaultIcon", NULL, cls->IconPath ); in ACTION_RegisterClassInfo() 982 if (progid->IconPath) in register_progid() 983 msi_reg_set_subkey_val( hkey, L"DefaultIcon", NULL, progid->IconPath ); in register_progid()
|
H A D | msipriv.h | 660 LPWSTR IconPath; member 693 LPWSTR IconPath; member
|
H A D | package.c | 217 free( cls->IconPath ); in free_package_structures() 240 free( progid->IconPath ); in free_package_structures()
|
/reactos/win32ss/user/winsrv/consrv/ |
H A D | console.c | 379 LPWSTR IconPath = NULL; in LoadShellLinkConsoleInfo() local 457 IconPath = Buffer; in LoadShellLinkConsoleInfo() 476 if (IconPath == NULL) in LoadShellLinkConsoleInfo() 487 IconPath = Buffer; in LoadShellLinkConsoleInfo() 489 IconPath = ConsoleInitInfo->AppName; in LoadShellLinkConsoleInfo() 494 IconPath, ConsoleInitInfo->ConsoleStartInfo->IconIndex); in LoadShellLinkConsoleInfo() 495 if (IconPath && *IconPath) in LoadShellLinkConsoleInfo() 510 PrivateExtractIconsW(IconPath, in LoadShellLinkConsoleInfo() 514 PrivateExtractIconsW(IconPath, in LoadShellLinkConsoleInfo()
|
/reactos/modules/rostests/apitests/shell32/ |
H A D | CShellLink.cpp | 233 PCWSTR IconPath; member 329 ExpandEnvironmentStringsW(testDef->IconPath, szPath2, _countof(szPath2)); in test_iconlocation() 382 ExpandEnvironmentStringsW(testDef->IconPath, szPath2, _countof(szPath2)); in test_iconlocation()
|
/reactos/dll/win32/wshom.ocx/ |
H A D | shell.c | 913 static HRESULT WINAPI WshShortcut_get_IconLocation(IWshShortcut *iface, BSTR *IconPath) in WshShortcut_get_IconLocation() argument 921 TRACE("(%p)->(%p)\n", This, IconPath); in WshShortcut_get_IconLocation() 923 if (!IconPath) in WshShortcut_get_IconLocation() 930 *IconPath = SysAllocString(pathW); in WshShortcut_get_IconLocation() 931 if (!*IconPath) return E_OUTOFMEMORY; in WshShortcut_get_IconLocation() 936 static HRESULT WINAPI WshShortcut_put_IconLocation(IWshShortcut *iface, BSTR IconPath) in WshShortcut_put_IconLocation() argument 944 TRACE("(%p)->(%s)\n", This, debugstr_w(IconPath)); in WshShortcut_put_IconLocation() 947 ptr = wcsrchr(IconPath, ','); in WshShortcut_put_IconLocation() 954 path = SysAllocStringLen(IconPath, ptr-IconPath); in WshShortcut_put_IconLocation()
|
H A D | wshom.idl | 477 HRESULT IconLocation([out, retval] BSTR* IconPath); 480 HRESULT IconLocation([in] BSTR IconPath);
|
/reactos/modules/rostests/winetests/wshom/ |
H A D | wshom.idl | 477 HRESULT IconLocation([out, retval] BSTR* IconPath); 480 HRESULT IconLocation([in] BSTR IconPath);
|
/reactos/dll/win32/setupapi/ |
H A D | install.c | 51 static const WCHAR IconPath[] = {'I','c','o','n','P','a','t','h',0}; variable 987 if (SetupFindFirstLineW(hInf, SectionName, IconPath, &Context)) in profile_items_callback()
|