2 * Copyright 2011 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "wshom_private.h"
24 #include "wine/debug.h"
25 #include "wine/unicode.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(wshom
);
29 static const char *debugstr_variant(const VARIANT
*v
)
40 return wine_dbg_sprintf("{VT_I4: %d}", V_I4(v
));
42 return wine_dbg_sprintf("{VT_R8: %lf}", V_R8(v
));
44 return wine_dbg_sprintf("{VT_BSTR: %s}", debugstr_w(V_BSTR(v
)));
46 return wine_dbg_sprintf("{VT_DISPATCH: %p}", V_DISPATCH(v
));
48 return wine_dbg_sprintf("{VT_BOOL: %x}", V_BOOL(v
));
50 return wine_dbg_sprintf("{VT_UNKNOWN: %p}", V_UNKNOWN(v
));
52 return wine_dbg_sprintf("{VT_UINT: %u}", V_UINT(v
));
53 case VT_BSTR
|VT_BYREF
:
54 return wine_dbg_sprintf("{VT_BSTR|VT_BYREF: ptr %p, data %s}",
55 V_BSTRREF(v
), debugstr_w(V_BSTRREF(v
) ? *V_BSTRREF(v
) : NULL
));
57 return wine_dbg_sprintf("{vt %d}", V_VT(v
));
61 static IWshShell3 WshShell3
;
65 IWshCollection IWshCollection_iface
;
71 IWshShortcut IWshShortcut_iface
;
78 static inline WshCollection
*impl_from_IWshCollection( IWshCollection
*iface
)
80 return CONTAINING_RECORD(iface
, WshCollection
, IWshCollection_iface
);
83 static inline WshShortcut
*impl_from_IWshShortcut( IWshShortcut
*iface
)
85 return CONTAINING_RECORD(iface
, WshShortcut
, IWshShortcut_iface
);
88 static HRESULT WINAPI
WshCollection_QueryInterface(IWshCollection
*iface
, REFIID riid
, void **ppv
)
90 WshCollection
*This
= impl_from_IWshCollection(iface
);
92 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
94 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
95 IsEqualGUID(riid
, &IID_IDispatch
) ||
96 IsEqualGUID(riid
, &IID_IWshCollection
))
100 FIXME("Unknown iface %s\n", debugstr_guid(riid
));
102 return E_NOINTERFACE
;
105 IUnknown_AddRef((IUnknown
*)*ppv
);
109 static ULONG WINAPI
WshCollection_AddRef(IWshCollection
*iface
)
111 WshCollection
*This
= impl_from_IWshCollection(iface
);
112 LONG ref
= InterlockedIncrement(&This
->ref
);
113 TRACE("(%p) ref = %d\n", This
, ref
);
117 static ULONG WINAPI
WshCollection_Release(IWshCollection
*iface
)
119 WshCollection
*This
= impl_from_IWshCollection(iface
);
120 LONG ref
= InterlockedDecrement(&This
->ref
);
121 TRACE("(%p) ref = %d\n", This
, ref
);
124 HeapFree(GetProcessHeap(), 0, This
);
129 static HRESULT WINAPI
WshCollection_GetTypeInfoCount(IWshCollection
*iface
, UINT
*pctinfo
)
131 WshCollection
*This
= impl_from_IWshCollection(iface
);
132 TRACE("(%p)->(%p)\n", This
, pctinfo
);
137 static HRESULT WINAPI
WshCollection_GetTypeInfo(IWshCollection
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
139 WshCollection
*This
= impl_from_IWshCollection(iface
);
140 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
141 return get_typeinfo(IWshCollection_tid
, ppTInfo
);
144 static HRESULT WINAPI
WshCollection_GetIDsOfNames(IWshCollection
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
145 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
147 WshCollection
*This
= impl_from_IWshCollection(iface
);
151 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
153 hr
= get_typeinfo(IWshCollection_tid
, &typeinfo
);
156 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
157 ITypeInfo_Release(typeinfo
);
163 static HRESULT WINAPI
WshCollection_Invoke(IWshCollection
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
164 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
166 WshCollection
*This
= impl_from_IWshCollection(iface
);
170 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
171 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
173 hr
= get_typeinfo(IWshCollection_tid
, &typeinfo
);
176 hr
= ITypeInfo_Invoke(typeinfo
, &This
->IWshCollection_iface
, dispIdMember
, wFlags
,
177 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
178 ITypeInfo_Release(typeinfo
);
184 static HRESULT WINAPI
WshCollection_Item(IWshCollection
*iface
, VARIANT
*index
, VARIANT
*value
)
186 WshCollection
*This
= impl_from_IWshCollection(iface
);
187 static const WCHAR allusersdesktopW
[] = {'A','l','l','U','s','e','r','s','D','e','s','k','t','o','p',0};
188 static const WCHAR allusersprogramsW
[] = {'A','l','l','U','s','e','r','s','P','r','o','g','r','a','m','s',0};
189 static const WCHAR desktopW
[] = {'D','e','s','k','t','o','p',0};
190 PIDLIST_ABSOLUTE pidl
;
191 WCHAR pathW
[MAX_PATH
];
196 TRACE("(%p)->(%s %p)\n", This
, debugstr_variant(index
), value
);
198 if (V_VT(index
) != VT_BSTR
)
200 FIXME("only BSTR index supported, got %d\n", V_VT(index
));
204 folder
= V_BSTR(index
);
205 if (!strcmpiW(folder
, desktopW
))
206 kind
= CSIDL_DESKTOP
;
207 else if (!strcmpiW(folder
, allusersdesktopW
))
208 kind
= CSIDL_COMMON_DESKTOPDIRECTORY
;
209 else if (!strcmpiW(folder
, allusersprogramsW
))
210 kind
= CSIDL_COMMON_PROGRAMS
;
213 FIXME("folder kind %s not supported\n", debugstr_w(folder
));
217 hr
= SHGetSpecialFolderLocation(NULL
, kind
, &pidl
);
218 if (hr
!= S_OK
) return hr
;
220 if (SHGetPathFromIDListW(pidl
, pathW
))
222 V_VT(value
) = VT_BSTR
;
223 V_BSTR(value
) = SysAllocString(pathW
);
224 hr
= V_BSTR(value
) ? S_OK
: E_OUTOFMEMORY
;
234 static HRESULT WINAPI
WshCollection_Count(IWshCollection
*iface
, LONG
*count
)
236 WshCollection
*This
= impl_from_IWshCollection(iface
);
237 FIXME("(%p)->(%p): stub\n", This
, count
);
241 static HRESULT WINAPI
WshCollection_get_length(IWshCollection
*iface
, LONG
*count
)
243 WshCollection
*This
= impl_from_IWshCollection(iface
);
244 FIXME("(%p)->(%p): stub\n", This
, count
);
248 static HRESULT WINAPI
WshCollection__NewEnum(IWshCollection
*iface
, IUnknown
*Enum
)
250 WshCollection
*This
= impl_from_IWshCollection(iface
);
251 FIXME("(%p)->(%p): stub\n", This
, Enum
);
255 static const IWshCollectionVtbl WshCollectionVtbl
= {
256 WshCollection_QueryInterface
,
257 WshCollection_AddRef
,
258 WshCollection_Release
,
259 WshCollection_GetTypeInfoCount
,
260 WshCollection_GetTypeInfo
,
261 WshCollection_GetIDsOfNames
,
262 WshCollection_Invoke
,
265 WshCollection_get_length
,
266 WshCollection__NewEnum
269 static HRESULT
WshCollection_Create(IWshCollection
**collection
)
273 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
274 if (!This
) return E_OUTOFMEMORY
;
276 This
->IWshCollection_iface
.lpVtbl
= &WshCollectionVtbl
;
279 *collection
= &This
->IWshCollection_iface
;
285 static HRESULT WINAPI
WshShortcut_QueryInterface(IWshShortcut
*iface
, REFIID riid
, void **ppv
)
287 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
289 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
291 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
292 IsEqualGUID(riid
, &IID_IDispatch
) ||
293 IsEqualGUID(riid
, &IID_IWshShortcut
))
297 FIXME("Unknown iface %s\n", debugstr_guid(riid
));
299 return E_NOINTERFACE
;
302 IUnknown_AddRef((IUnknown
*)*ppv
);
306 static ULONG WINAPI
WshShortcut_AddRef(IWshShortcut
*iface
)
308 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
309 LONG ref
= InterlockedIncrement(&This
->ref
);
310 TRACE("(%p) ref = %d\n", This
, ref
);
314 static ULONG WINAPI
WshShortcut_Release(IWshShortcut
*iface
)
316 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
317 LONG ref
= InterlockedDecrement(&This
->ref
);
318 TRACE("(%p) ref = %d\n", This
, ref
);
322 SysFreeString(This
->path_link
);
323 IShellLinkW_Release(This
->link
);
324 HeapFree(GetProcessHeap(), 0, This
);
330 static HRESULT WINAPI
WshShortcut_GetTypeInfoCount(IWshShortcut
*iface
, UINT
*pctinfo
)
332 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
333 TRACE("(%p)->(%p)\n", This
, pctinfo
);
338 static HRESULT WINAPI
WshShortcut_GetTypeInfo(IWshShortcut
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
340 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
341 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
342 return get_typeinfo(IWshShortcut_tid
, ppTInfo
);
345 static HRESULT WINAPI
WshShortcut_GetIDsOfNames(IWshShortcut
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
346 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
348 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
352 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
354 hr
= get_typeinfo(IWshShortcut_tid
, &typeinfo
);
357 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
358 ITypeInfo_Release(typeinfo
);
364 static HRESULT WINAPI
WshShortcut_Invoke(IWshShortcut
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
365 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
367 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
371 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
372 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
374 hr
= get_typeinfo(IWshShortcut_tid
, &typeinfo
);
377 hr
= ITypeInfo_Invoke(typeinfo
, &This
->IWshShortcut_iface
, dispIdMember
, wFlags
,
378 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
379 ITypeInfo_Release(typeinfo
);
385 static HRESULT WINAPI
WshShortcut_get_FullName(IWshShortcut
*iface
, BSTR
*name
)
387 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
388 FIXME("(%p)->(%p): stub\n", This
, name
);
392 static HRESULT WINAPI
WshShortcut_get_Arguments(IWshShortcut
*iface
, BSTR
*Arguments
)
394 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
395 FIXME("(%p)->(%p): stub\n", This
, Arguments
);
399 static HRESULT WINAPI
WshShortcut_put_Arguments(IWshShortcut
*iface
, BSTR Arguments
)
401 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
402 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(Arguments
));
406 static HRESULT WINAPI
WshShortcut_get_Description(IWshShortcut
*iface
, BSTR
*Description
)
408 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
409 FIXME("(%p)->(%p): stub\n", This
, Description
);
413 static HRESULT WINAPI
WshShortcut_put_Description(IWshShortcut
*iface
, BSTR Description
)
415 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
416 TRACE("(%p)->(%s)\n", This
, debugstr_w(Description
));
417 return IShellLinkW_SetDescription(This
->link
, Description
);
420 static HRESULT WINAPI
WshShortcut_get_Hotkey(IWshShortcut
*iface
, BSTR
*Hotkey
)
422 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
423 FIXME("(%p)->(%p): stub\n", This
, Hotkey
);
427 static HRESULT WINAPI
WshShortcut_put_Hotkey(IWshShortcut
*iface
, BSTR Hotkey
)
429 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
430 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(Hotkey
));
434 static HRESULT WINAPI
WshShortcut_get_IconLocation(IWshShortcut
*iface
, BSTR
*IconPath
)
436 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
437 FIXME("(%p)->(%p): stub\n", This
, IconPath
);
441 static HRESULT WINAPI
WshShortcut_put_IconLocation(IWshShortcut
*iface
, BSTR IconPath
)
443 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
444 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(IconPath
));
448 static HRESULT WINAPI
WshShortcut_put_RelativePath(IWshShortcut
*iface
, BSTR rhs
)
450 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
451 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(rhs
));
455 static HRESULT WINAPI
WshShortcut_get_TargetPath(IWshShortcut
*iface
, BSTR
*Path
)
457 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
458 FIXME("(%p)->(%p): stub\n", This
, Path
);
462 static HRESULT WINAPI
WshShortcut_put_TargetPath(IWshShortcut
*iface
, BSTR Path
)
464 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
465 TRACE("(%p)->(%s)\n", This
, debugstr_w(Path
));
466 return IShellLinkW_SetPath(This
->link
, Path
);
469 static HRESULT WINAPI
WshShortcut_get_WindowStyle(IWshShortcut
*iface
, int *ShowCmd
)
471 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
472 FIXME("(%p)->(%p): stub\n", This
, ShowCmd
);
476 static HRESULT WINAPI
WshShortcut_put_WindowStyle(IWshShortcut
*iface
, int ShowCmd
)
478 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
479 FIXME("(%p)->(%d): stub\n", This
, ShowCmd
);
483 static HRESULT WINAPI
WshShortcut_get_WorkingDirectory(IWshShortcut
*iface
, BSTR
*WorkingDirectory
)
485 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
486 FIXME("(%p)->(%p): stub\n", This
, WorkingDirectory
);
490 static HRESULT WINAPI
WshShortcut_put_WorkingDirectory(IWshShortcut
*iface
, BSTR WorkingDirectory
)
492 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
493 TRACE("(%p)->(%s): stub\n", This
, debugstr_w(WorkingDirectory
));
494 return IShellLinkW_SetWorkingDirectory(This
->link
, WorkingDirectory
);
497 static HRESULT WINAPI
WshShortcut_Load(IWshShortcut
*iface
, BSTR PathLink
)
499 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
500 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(PathLink
));
504 static HRESULT WINAPI
WshShortcut_Save(IWshShortcut
*iface
)
506 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
510 TRACE("(%p)\n", This
);
512 IShellLinkW_QueryInterface(This
->link
, &IID_IPersistFile
, (void**)&file
);
513 hr
= IPersistFile_Save(file
, This
->path_link
, TRUE
);
514 IPersistFile_Release(file
);
519 static const IWshShortcutVtbl WshShortcutVtbl
= {
520 WshShortcut_QueryInterface
,
523 WshShortcut_GetTypeInfoCount
,
524 WshShortcut_GetTypeInfo
,
525 WshShortcut_GetIDsOfNames
,
527 WshShortcut_get_FullName
,
528 WshShortcut_get_Arguments
,
529 WshShortcut_put_Arguments
,
530 WshShortcut_get_Description
,
531 WshShortcut_put_Description
,
532 WshShortcut_get_Hotkey
,
533 WshShortcut_put_Hotkey
,
534 WshShortcut_get_IconLocation
,
535 WshShortcut_put_IconLocation
,
536 WshShortcut_put_RelativePath
,
537 WshShortcut_get_TargetPath
,
538 WshShortcut_put_TargetPath
,
539 WshShortcut_get_WindowStyle
,
540 WshShortcut_put_WindowStyle
,
541 WshShortcut_get_WorkingDirectory
,
542 WshShortcut_put_WorkingDirectory
,
547 static HRESULT
WshShortcut_Create(const WCHAR
*path
, IDispatch
**shortcut
)
554 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
555 if (!This
) return E_OUTOFMEMORY
;
557 This
->IWshShortcut_iface
.lpVtbl
= &WshShortcutVtbl
;
560 hr
= CoCreateInstance(&CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
561 &IID_IShellLinkW
, (void**)&This
->link
);
564 HeapFree(GetProcessHeap(), 0, This
);
568 This
->path_link
= SysAllocString(path
);
569 *shortcut
= (IDispatch
*)&This
->IWshShortcut_iface
;
574 static HRESULT WINAPI
WshShell3_QueryInterface(IWshShell3
*iface
, REFIID riid
, void **ppv
)
576 TRACE("(%s, %p)\n", debugstr_guid(riid
), ppv
);
578 if(IsEqualGUID(riid
, &IID_IUnknown
) ||
579 IsEqualGUID(riid
, &IID_IDispatch
) ||
580 IsEqualGUID(riid
, &IID_IWshShell3
))
584 FIXME("Unknown iface %s\n", debugstr_guid(riid
));
586 return E_NOINTERFACE
;
589 IWshShell3_AddRef(iface
);
593 static ULONG WINAPI
WshShell3_AddRef(IWshShell3
*iface
)
599 static ULONG WINAPI
WshShell3_Release(IWshShell3
*iface
)
605 static HRESULT WINAPI
WshShell3_GetTypeInfoCount(IWshShell3
*iface
, UINT
*pctinfo
)
607 TRACE("(%p)\n", pctinfo
);
612 static HRESULT WINAPI
WshShell3_GetTypeInfo(IWshShell3
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
614 TRACE("(%u %u %p)\n", iTInfo
, lcid
, ppTInfo
);
615 return get_typeinfo(IWshShell3_tid
, ppTInfo
);
618 static HRESULT WINAPI
WshShell3_GetIDsOfNames(IWshShell3
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
619 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
624 TRACE("(%s %p %u %u %p)\n", debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
626 hr
= get_typeinfo(IWshShell3_tid
, &typeinfo
);
629 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
630 ITypeInfo_Release(typeinfo
);
636 static HRESULT WINAPI
WshShell3_Invoke(IWshShell3
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
637 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
642 TRACE("(%d %s %d %d %p %p %p %p)\n", dispIdMember
, debugstr_guid(riid
),
643 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
645 hr
= get_typeinfo(IWshShell3_tid
, &typeinfo
);
648 hr
= ITypeInfo_Invoke(typeinfo
, &WshShell3
, dispIdMember
, wFlags
,
649 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
650 ITypeInfo_Release(typeinfo
);
656 static HRESULT WINAPI
WshShell3_get_SpecialFolders(IWshShell3
*iface
, IWshCollection
**folders
)
658 TRACE("(%p)\n", folders
);
659 return WshCollection_Create(folders
);
662 static HRESULT WINAPI
WshShell3_get_Environment(IWshShell3
*iface
, VARIANT
*Type
, IWshEnvironment
**out_Env
)
664 FIXME("(%p %p): stub\n", Type
, out_Env
);
668 static HRESULT WINAPI
WshShell3_Run(IWshShell3
*iface
, BSTR Command
, VARIANT
*WindowStyle
, VARIANT
*WaitOnReturn
, int *out_ExitCode
)
670 FIXME("(%s %s %p): stub\n", debugstr_variant(WindowStyle
), debugstr_variant(WaitOnReturn
), out_ExitCode
);
674 static HRESULT WINAPI
WshShell3_Popup(IWshShell3
*iface
, BSTR Text
, VARIANT
* SecondsToWait
, VARIANT
*Title
, VARIANT
*Type
, int *button
)
676 FIXME("(%s %s %s %s %p): stub\n", debugstr_w(Text
), debugstr_variant(SecondsToWait
),
677 debugstr_variant(Title
), debugstr_variant(Type
), button
);
681 static HRESULT WINAPI
WshShell3_CreateShortcut(IWshShell3
*iface
, BSTR PathLink
, IDispatch
** Shortcut
)
683 TRACE("(%s %p)\n", debugstr_w(PathLink
), Shortcut
);
684 return WshShortcut_Create(PathLink
, Shortcut
);
687 static HRESULT WINAPI
WshShell3_ExpandEnvironmentStrings(IWshShell3
*iface
, BSTR Src
, BSTR
* out_Dst
)
689 FIXME("(%s %p): stub\n", debugstr_w(Src
), out_Dst
);
693 static HRESULT WINAPI
WshShell3_RegRead(IWshShell3
*iface
, BSTR Name
, VARIANT
* out_Value
)
695 FIXME("(%s %p): stub\n", debugstr_w(Name
), out_Value
);
699 static HRESULT WINAPI
WshShell3_RegWrite(IWshShell3
*iface
, BSTR Name
, VARIANT
*Value
, VARIANT
*Type
)
701 FIXME("(%s %s %s): stub\n", debugstr_w(Name
), debugstr_variant(Value
), debugstr_variant(Type
));
705 static HRESULT WINAPI
WshShell3_RegDelete(IWshShell3
*iface
, BSTR Name
)
707 FIXME("(%s): stub\n", debugstr_w(Name
));
711 static HRESULT WINAPI
WshShell3_LogEvent(IWshShell3
*iface
, VARIANT
*Type
, BSTR Message
, BSTR Target
, VARIANT_BOOL
*out_Success
)
713 FIXME("(%s %s %s %p): stub\n", debugstr_variant(Type
), debugstr_w(Message
), debugstr_w(Target
), out_Success
);
717 static HRESULT WINAPI
WshShell3_AppActivate(IWshShell3
*iface
, VARIANT
*App
, VARIANT
*Wait
, VARIANT_BOOL
*out_Success
)
719 FIXME("(%s %s %p): stub\n", debugstr_variant(App
), debugstr_variant(Wait
), out_Success
);
723 static HRESULT WINAPI
WshShell3_SendKeys(IWshShell3
*iface
, BSTR Keys
, VARIANT
*Wait
)
725 FIXME("(%s %p): stub\n", debugstr_w(Keys
), Wait
);
729 static const IWshShell3Vtbl WshShell3Vtbl
= {
730 WshShell3_QueryInterface
,
733 WshShell3_GetTypeInfoCount
,
734 WshShell3_GetTypeInfo
,
735 WshShell3_GetIDsOfNames
,
737 WshShell3_get_SpecialFolders
,
738 WshShell3_get_Environment
,
741 WshShell3_CreateShortcut
,
742 WshShell3_ExpandEnvironmentStrings
,
747 WshShell3_AppActivate
,
751 static IWshShell3 WshShell3
= { &WshShell3Vtbl
};
753 HRESULT WINAPI
WshShellFactory_CreateInstance(IClassFactory
*iface
, IUnknown
*outer
, REFIID riid
, void **ppv
)
755 TRACE("(%p %s %p)\n", outer
, debugstr_guid(riid
), ppv
);
757 return IWshShell3_QueryInterface(&WshShell3
, riid
, ppv
);