Lines Matching refs:chm_file
512 WCHAR chm_file[MAX_PATH]; in SetChmPath() local
525 PathCombineW(chm_file, base_path, rel_path); in SetChmPath()
527 file->chm_file = strdupW(chm_file); in SetChmPath()
530 file->chm_file = strdupW(base_file); in SetChmPath()
536 TRACE("ChmFile = {%s %s}\n", debugstr_w(file->chm_file), debugstr_w(file->chm_index)); in SetChmPath()
539 IStream *GetChmStream(CHMInfo *info, LPCWSTR parent_chm, ChmPath *chm_file) in GetChmStream() argument
545 TRACE("%s (%s :: %s)\n", debugstr_w(parent_chm), debugstr_w(chm_file->chm_file), in GetChmStream()
546 debugstr_w(chm_file->chm_index)); in GetChmStream()
548 if(parent_chm || chm_file->chm_file) { in GetChmStream()
550 chm_file->chm_file ? chm_file->chm_file : parent_chm, NULL, in GetChmStream()
561 hres = IStorage_OpenStream(storage, chm_file->chm_index, NULL, STGM_READ, 0, &stream); in GetChmStream()