Lines Matching refs:fcs
5291 SHFOLDERCUSTOMSETTINGS fcs; in test_SHGetSetFolderCustomSettings() local
5312 memset(&fcs, 0, sizeof(fcs)); in test_SHGetSetFolderCustomSettings()
5313 fcs.dwSize = sizeof(fcs); in test_SHGetSetFolderCustomSettings()
5314 fcs.dwMask = FCSM_ICONFILE; in test_SHGetSetFolderCustomSettings()
5315 fcs.pszIconFile = iconpathW; in test_SHGetSetFolderCustomSettings()
5317 …hr = pSHGetSetFolderCustomSettings(&fcs, pathW, FCS_FORCEWRITE); /*creates and writes to a Desktop… in test_SHGetSetFolderCustomSettings()
5320 memset(&fcs, 0, sizeof(fcs)); in test_SHGetSetFolderCustomSettings()
5321 fcs.dwSize = sizeof(fcs); in test_SHGetSetFolderCustomSettings()
5322 fcs.dwMask = FCSM_ICONFILE; in test_SHGetSetFolderCustomSettings()
5323 fcs.cchIconFile = MAX_PATH; in test_SHGetSetFolderCustomSettings()
5324 fcs.pszIconFile = bufferW; in test_SHGetSetFolderCustomSettings()
5327 hr = pSHGetSetFolderCustomSettings(&fcs, pathW, FCS_READ); in test_SHGetSetFolderCustomSettings()
5329 …do_wine ok(!lstrcmpiW(iconpathW, fcs.pszIconFile), "Expected %s, got %s\n", wine_dbgstr_w(iconpath… in test_SHGetSetFolderCustomSettings()
5331 hr = pSHGetSetFolderCustomSettings(&fcs, NULL, FCS_READ); in test_SHGetSetFolderCustomSettings()