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"
26 #include "wine/debug.h"
27 #include "wine/heap.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(wshom
);
33 struct provideclassinfo classinfo
;
34 IWshShell3 IWshShell3_iface
;
36 static WshShellImpl WshShell3
;
40 struct provideclassinfo classinfo
;
41 IWshCollection IWshCollection_iface
;
47 struct provideclassinfo classinfo
;
48 IWshShortcut IWshShortcut_iface
;
57 struct provideclassinfo classinfo
;
58 IWshEnvironment IWshEnvironment_iface
;
64 struct provideclassinfo classinfo
;
65 IWshExec IWshExec_iface
;
67 PROCESS_INFORMATION info
;
70 static inline WshCollection
*impl_from_IWshCollection( IWshCollection
*iface
)
72 return CONTAINING_RECORD(iface
, WshCollection
, IWshCollection_iface
);
75 static inline WshShortcut
*impl_from_IWshShortcut( IWshShortcut
*iface
)
77 return CONTAINING_RECORD(iface
, WshShortcut
, IWshShortcut_iface
);
80 static inline WshEnvironment
*impl_from_IWshEnvironment( IWshEnvironment
*iface
)
82 return CONTAINING_RECORD(iface
, WshEnvironment
, IWshEnvironment_iface
);
85 static inline WshExecImpl
*impl_from_IWshExec( IWshExec
*iface
)
87 return CONTAINING_RECORD(iface
, WshExecImpl
, IWshExec_iface
);
90 static HRESULT WINAPI
WshExec_QueryInterface(IWshExec
*iface
, REFIID riid
, void **obj
)
92 WshExecImpl
*This
= impl_from_IWshExec(iface
);
94 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), obj
);
96 if (IsEqualGUID(riid
, &IID_IDispatch
) ||
97 IsEqualGUID(riid
, &IID_IWshExec
) ||
98 IsEqualGUID(riid
, &IID_IUnknown
))
102 else if (IsEqualIID(riid
, &IID_IProvideClassInfo
))
104 *obj
= &This
->classinfo
.IProvideClassInfo_iface
;
107 FIXME("Unknown iface %s\n", debugstr_guid(riid
));
109 return E_NOINTERFACE
;
112 IUnknown_AddRef((IUnknown
*)*obj
);
116 static ULONG WINAPI
WshExec_AddRef(IWshExec
*iface
)
118 WshExecImpl
*This
= impl_from_IWshExec(iface
);
119 LONG ref
= InterlockedIncrement(&This
->ref
);
120 TRACE("(%p) ref = %d\n", This
, ref
);
124 static ULONG WINAPI
WshExec_Release(IWshExec
*iface
)
126 WshExecImpl
*This
= impl_from_IWshExec(iface
);
127 LONG ref
= InterlockedDecrement(&This
->ref
);
128 TRACE("(%p) ref = %d\n", This
, ref
);
131 CloseHandle(This
->info
.hThread
);
132 CloseHandle(This
->info
.hProcess
);
139 static HRESULT WINAPI
WshExec_GetTypeInfoCount(IWshExec
*iface
, UINT
*pctinfo
)
141 WshExecImpl
*This
= impl_from_IWshExec(iface
);
142 TRACE("(%p)->(%p)\n", This
, pctinfo
);
147 static HRESULT WINAPI
WshExec_GetTypeInfo(IWshExec
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
149 WshExecImpl
*This
= impl_from_IWshExec(iface
);
150 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
151 return get_typeinfo(IWshExec_tid
, ppTInfo
);
154 static HRESULT WINAPI
WshExec_GetIDsOfNames(IWshExec
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
155 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
157 WshExecImpl
*This
= impl_from_IWshExec(iface
);
161 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
163 hr
= get_typeinfo(IWshExec_tid
, &typeinfo
);
166 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
167 ITypeInfo_Release(typeinfo
);
173 static HRESULT WINAPI
WshExec_Invoke(IWshExec
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
174 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
176 WshExecImpl
*This
= impl_from_IWshExec(iface
);
180 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
181 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
183 hr
= get_typeinfo(IWshExec_tid
, &typeinfo
);
186 hr
= ITypeInfo_Invoke(typeinfo
, &This
->IWshExec_iface
, dispIdMember
, wFlags
,
187 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
188 ITypeInfo_Release(typeinfo
);
194 static HRESULT WINAPI
WshExec_get_Status(IWshExec
*iface
, WshExecStatus
*status
)
196 WshExecImpl
*This
= impl_from_IWshExec(iface
);
199 TRACE("(%p)->(%p)\n", This
, status
);
204 if (!GetExitCodeProcess(This
->info
.hProcess
, &code
))
205 return HRESULT_FROM_WIN32(GetLastError());
210 *status
= WshFinished
;
213 *status
= WshRunning
;
222 static HRESULT WINAPI
WshExec_get_StdIn(IWshExec
*iface
, ITextStream
**stream
)
224 WshExecImpl
*This
= impl_from_IWshExec(iface
);
226 FIXME("(%p)->(%p): stub\n", This
, stream
);
231 static HRESULT WINAPI
WshExec_get_StdOut(IWshExec
*iface
, ITextStream
**stream
)
233 WshExecImpl
*This
= impl_from_IWshExec(iface
);
235 FIXME("(%p)->(%p): stub\n", This
, stream
);
240 static HRESULT WINAPI
WshExec_get_StdErr(IWshExec
*iface
, ITextStream
**stream
)
242 WshExecImpl
*This
= impl_from_IWshExec(iface
);
244 FIXME("(%p)->(%p): stub\n", This
, stream
);
249 static HRESULT WINAPI
WshExec_get_ProcessID(IWshExec
*iface
, DWORD
*pid
)
251 WshExecImpl
*This
= impl_from_IWshExec(iface
);
253 TRACE("(%p)->(%p)\n", This
, pid
);
258 *pid
= This
->info
.dwProcessId
;
262 static HRESULT WINAPI
WshExec_get_ExitCode(IWshExec
*iface
, DWORD
*code
)
264 WshExecImpl
*This
= impl_from_IWshExec(iface
);
266 FIXME("(%p)->(%p): stub\n", This
, code
);
271 static BOOL CALLBACK
enum_thread_wnd_proc(HWND hwnd
, LPARAM lParam
)
273 INT
*count
= (INT
*)lParam
;
276 PostMessageW(hwnd
, WM_CLOSE
, 0, 0);
277 /* try to send it to all windows, even if failed for some */
281 static HRESULT WINAPI
WshExec_Terminate(IWshExec
*iface
)
283 WshExecImpl
*This
= impl_from_IWshExec(iface
);
284 BOOL ret
, kill
= FALSE
;
287 TRACE("(%p)\n", This
);
289 ret
= EnumThreadWindows(This
->info
.dwThreadId
, enum_thread_wnd_proc
, (LPARAM
)&count
);
291 /* manual testing shows that it waits 2 seconds before forcing termination */
292 if (WaitForSingleObject(This
->info
.hProcess
, 2000) != WAIT_OBJECT_0
)
299 TerminateProcess(This
->info
.hProcess
, 0);
304 static const IWshExecVtbl WshExecVtbl
= {
305 WshExec_QueryInterface
,
308 WshExec_GetTypeInfoCount
,
310 WshExec_GetIDsOfNames
,
316 WshExec_get_ProcessID
,
317 WshExec_get_ExitCode
,
321 static HRESULT
WshExec_create(BSTR command
, IWshExec
**ret
)
323 STARTUPINFOW si
= {0};
328 This
= heap_alloc(sizeof(*This
));
330 return E_OUTOFMEMORY
;
332 This
->IWshExec_iface
.lpVtbl
= &WshExecVtbl
;
335 if (!CreateProcessW(NULL
, command
, NULL
, NULL
, FALSE
, 0, NULL
, NULL
, &si
, &This
->info
)) {
337 return HRESULT_FROM_WIN32(GetLastError());
340 init_classinfo(&CLSID_WshExec
, (IUnknown
*)&This
->IWshExec_iface
, &This
->classinfo
);
341 *ret
= &This
->IWshExec_iface
;
345 static HRESULT WINAPI
WshEnvironment_QueryInterface(IWshEnvironment
*iface
, REFIID riid
, void **obj
)
347 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
349 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), obj
);
351 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
352 IsEqualGUID(riid
, &IID_IDispatch
) ||
353 IsEqualGUID(riid
, &IID_IWshEnvironment
))
357 else if (IsEqualIID(riid
, &IID_IProvideClassInfo
))
359 *obj
= &This
->classinfo
.IProvideClassInfo_iface
;
362 FIXME("Unknown iface %s\n", debugstr_guid(riid
));
364 return E_NOINTERFACE
;
367 IUnknown_AddRef((IUnknown
*)*obj
);
371 static ULONG WINAPI
WshEnvironment_AddRef(IWshEnvironment
*iface
)
373 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
374 LONG ref
= InterlockedIncrement(&This
->ref
);
375 TRACE("(%p) ref = %d\n", This
, ref
);
379 static ULONG WINAPI
WshEnvironment_Release(IWshEnvironment
*iface
)
381 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
382 LONG ref
= InterlockedDecrement(&This
->ref
);
383 TRACE("(%p) ref = %d\n", This
, ref
);
391 static HRESULT WINAPI
WshEnvironment_GetTypeInfoCount(IWshEnvironment
*iface
, UINT
*pctinfo
)
393 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
394 TRACE("(%p)->(%p)\n", This
, pctinfo
);
399 static HRESULT WINAPI
WshEnvironment_GetTypeInfo(IWshEnvironment
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
401 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
402 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
403 return get_typeinfo(IWshEnvironment_tid
, ppTInfo
);
406 static HRESULT WINAPI
WshEnvironment_GetIDsOfNames(IWshEnvironment
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
407 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
409 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
413 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
415 hr
= get_typeinfo(IWshEnvironment_tid
, &typeinfo
);
418 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
419 ITypeInfo_Release(typeinfo
);
425 static HRESULT WINAPI
WshEnvironment_Invoke(IWshEnvironment
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
426 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
428 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
432 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
433 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
435 hr
= get_typeinfo(IWshEnvironment_tid
, &typeinfo
);
438 hr
= ITypeInfo_Invoke(typeinfo
, &This
->IWshEnvironment_iface
, dispIdMember
, wFlags
,
439 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
440 ITypeInfo_Release(typeinfo
);
446 static HRESULT WINAPI
WshEnvironment_get_Item(IWshEnvironment
*iface
, BSTR name
, BSTR
*value
)
448 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
451 TRACE("(%p)->(%s %p)\n", This
, debugstr_w(name
), value
);
456 len
= GetEnvironmentVariableW(name
, NULL
, 0);
459 *value
= SysAllocStringLen(NULL
, len
- 1);
461 GetEnvironmentVariableW(name
, *value
, len
);
464 *value
= SysAllocStringLen(NULL
, 0);
466 return *value
? S_OK
: E_OUTOFMEMORY
;
469 static HRESULT WINAPI
WshEnvironment_put_Item(IWshEnvironment
*iface
, BSTR name
, BSTR value
)
471 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
472 FIXME("(%p)->(%s %s): stub\n", This
, debugstr_w(name
), debugstr_w(value
));
476 static HRESULT WINAPI
WshEnvironment_Count(IWshEnvironment
*iface
, LONG
*count
)
478 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
479 FIXME("(%p)->(%p): stub\n", This
, count
);
483 static HRESULT WINAPI
WshEnvironment_get_length(IWshEnvironment
*iface
, LONG
*len
)
485 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
486 FIXME("(%p)->(%p): stub\n", This
, len
);
490 static HRESULT WINAPI
WshEnvironment__NewEnum(IWshEnvironment
*iface
, IUnknown
**penum
)
492 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
493 FIXME("(%p)->(%p): stub\n", This
, penum
);
497 static HRESULT WINAPI
WshEnvironment_Remove(IWshEnvironment
*iface
, BSTR name
)
499 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
500 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(name
));
504 static const IWshEnvironmentVtbl WshEnvironmentVtbl
= {
505 WshEnvironment_QueryInterface
,
506 WshEnvironment_AddRef
,
507 WshEnvironment_Release
,
508 WshEnvironment_GetTypeInfoCount
,
509 WshEnvironment_GetTypeInfo
,
510 WshEnvironment_GetIDsOfNames
,
511 WshEnvironment_Invoke
,
512 WshEnvironment_get_Item
,
513 WshEnvironment_put_Item
,
514 WshEnvironment_Count
,
515 WshEnvironment_get_length
,
516 WshEnvironment__NewEnum
,
517 WshEnvironment_Remove
520 static HRESULT
WshEnvironment_Create(IWshEnvironment
**env
)
522 WshEnvironment
*This
;
524 This
= heap_alloc(sizeof(*This
));
525 if (!This
) return E_OUTOFMEMORY
;
527 This
->IWshEnvironment_iface
.lpVtbl
= &WshEnvironmentVtbl
;
530 init_classinfo(&IID_IWshEnvironment
, (IUnknown
*)&This
->IWshEnvironment_iface
, &This
->classinfo
);
531 *env
= &This
->IWshEnvironment_iface
;
536 static HRESULT WINAPI
WshCollection_QueryInterface(IWshCollection
*iface
, REFIID riid
, void **ppv
)
538 WshCollection
*This
= impl_from_IWshCollection(iface
);
540 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
542 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
543 IsEqualGUID(riid
, &IID_IDispatch
) ||
544 IsEqualGUID(riid
, &IID_IWshCollection
))
548 else if (IsEqualIID(riid
, &IID_IProvideClassInfo
))
550 *ppv
= &This
->classinfo
.IProvideClassInfo_iface
;
553 FIXME("Unknown iface %s\n", debugstr_guid(riid
));
555 return E_NOINTERFACE
;
558 IUnknown_AddRef((IUnknown
*)*ppv
);
562 static ULONG WINAPI
WshCollection_AddRef(IWshCollection
*iface
)
564 WshCollection
*This
= impl_from_IWshCollection(iface
);
565 LONG ref
= InterlockedIncrement(&This
->ref
);
566 TRACE("(%p) ref = %d\n", This
, ref
);
570 static ULONG WINAPI
WshCollection_Release(IWshCollection
*iface
)
572 WshCollection
*This
= impl_from_IWshCollection(iface
);
573 LONG ref
= InterlockedDecrement(&This
->ref
);
574 TRACE("(%p) ref = %d\n", This
, ref
);
582 static HRESULT WINAPI
WshCollection_GetTypeInfoCount(IWshCollection
*iface
, UINT
*pctinfo
)
584 WshCollection
*This
= impl_from_IWshCollection(iface
);
585 TRACE("(%p)->(%p)\n", This
, pctinfo
);
590 static HRESULT WINAPI
WshCollection_GetTypeInfo(IWshCollection
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
592 WshCollection
*This
= impl_from_IWshCollection(iface
);
593 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
594 return get_typeinfo(IWshCollection_tid
, ppTInfo
);
597 static HRESULT WINAPI
WshCollection_GetIDsOfNames(IWshCollection
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
598 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
600 WshCollection
*This
= impl_from_IWshCollection(iface
);
604 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
606 hr
= get_typeinfo(IWshCollection_tid
, &typeinfo
);
609 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
610 ITypeInfo_Release(typeinfo
);
616 static HRESULT WINAPI
WshCollection_Invoke(IWshCollection
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
617 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
619 WshCollection
*This
= impl_from_IWshCollection(iface
);
623 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
624 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
626 hr
= get_typeinfo(IWshCollection_tid
, &typeinfo
);
629 hr
= ITypeInfo_Invoke(typeinfo
, &This
->IWshCollection_iface
, dispIdMember
, wFlags
,
630 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
631 ITypeInfo_Release(typeinfo
);
637 static HRESULT WINAPI
WshCollection_Item(IWshCollection
*iface
, VARIANT
*index
, VARIANT
*value
)
639 WshCollection
*This
= impl_from_IWshCollection(iface
);
640 static const WCHAR allusersdesktopW
[] = {'A','l','l','U','s','e','r','s','D','e','s','k','t','o','p',0};
641 static const WCHAR allusersprogramsW
[] = {'A','l','l','U','s','e','r','s','P','r','o','g','r','a','m','s',0};
642 static const WCHAR desktopW
[] = {'D','e','s','k','t','o','p',0};
643 PIDLIST_ABSOLUTE pidl
;
644 WCHAR pathW
[MAX_PATH
];
649 TRACE("(%p)->(%s %p)\n", This
, debugstr_variant(index
), value
);
651 if (V_VT(index
) != VT_BSTR
)
653 FIXME("only BSTR index supported, got %d\n", V_VT(index
));
657 folder
= V_BSTR(index
);
658 if (!wcsicmp(folder
, desktopW
))
659 kind
= CSIDL_DESKTOP
;
660 else if (!wcsicmp(folder
, allusersdesktopW
))
661 kind
= CSIDL_COMMON_DESKTOPDIRECTORY
;
662 else if (!wcsicmp(folder
, allusersprogramsW
))
663 kind
= CSIDL_COMMON_PROGRAMS
;
666 FIXME("folder kind %s not supported\n", debugstr_w(folder
));
670 hr
= SHGetSpecialFolderLocation(NULL
, kind
, &pidl
);
671 if (hr
!= S_OK
) return hr
;
673 if (SHGetPathFromIDListW(pidl
, pathW
))
675 V_VT(value
) = VT_BSTR
;
676 V_BSTR(value
) = SysAllocString(pathW
);
677 hr
= V_BSTR(value
) ? S_OK
: E_OUTOFMEMORY
;
687 static HRESULT WINAPI
WshCollection_Count(IWshCollection
*iface
, LONG
*count
)
689 WshCollection
*This
= impl_from_IWshCollection(iface
);
690 FIXME("(%p)->(%p): stub\n", This
, count
);
694 static HRESULT WINAPI
WshCollection_get_length(IWshCollection
*iface
, LONG
*count
)
696 WshCollection
*This
= impl_from_IWshCollection(iface
);
697 FIXME("(%p)->(%p): stub\n", This
, count
);
701 static HRESULT WINAPI
WshCollection__NewEnum(IWshCollection
*iface
, IUnknown
**Enum
)
703 WshCollection
*This
= impl_from_IWshCollection(iface
);
704 FIXME("(%p)->(%p): stub\n", This
, Enum
);
708 static const IWshCollectionVtbl WshCollectionVtbl
= {
709 WshCollection_QueryInterface
,
710 WshCollection_AddRef
,
711 WshCollection_Release
,
712 WshCollection_GetTypeInfoCount
,
713 WshCollection_GetTypeInfo
,
714 WshCollection_GetIDsOfNames
,
715 WshCollection_Invoke
,
718 WshCollection_get_length
,
719 WshCollection__NewEnum
722 static HRESULT
WshCollection_Create(IWshCollection
**collection
)
726 This
= heap_alloc(sizeof(*This
));
727 if (!This
) return E_OUTOFMEMORY
;
729 This
->IWshCollection_iface
.lpVtbl
= &WshCollectionVtbl
;
732 init_classinfo(&IID_IWshCollection
, (IUnknown
*)&This
->IWshCollection_iface
, &This
->classinfo
);
733 *collection
= &This
->IWshCollection_iface
;
739 static HRESULT WINAPI
WshShortcut_QueryInterface(IWshShortcut
*iface
, REFIID riid
, void **ppv
)
741 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
743 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
745 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
746 IsEqualGUID(riid
, &IID_IDispatch
) ||
747 IsEqualGUID(riid
, &IID_IWshShortcut
))
751 else if (IsEqualIID(riid
, &IID_IProvideClassInfo
))
753 *ppv
= &This
->classinfo
.IProvideClassInfo_iface
;
756 FIXME("Unknown iface %s\n", debugstr_guid(riid
));
758 return E_NOINTERFACE
;
761 IUnknown_AddRef((IUnknown
*)*ppv
);
765 static ULONG WINAPI
WshShortcut_AddRef(IWshShortcut
*iface
)
767 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
768 LONG ref
= InterlockedIncrement(&This
->ref
);
769 TRACE("(%p) ref = %d\n", This
, ref
);
773 static ULONG WINAPI
WshShortcut_Release(IWshShortcut
*iface
)
775 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
776 LONG ref
= InterlockedDecrement(&This
->ref
);
777 TRACE("(%p) ref = %d\n", This
, ref
);
781 SysFreeString(This
->path_link
);
782 IShellLinkW_Release(This
->link
);
789 static HRESULT WINAPI
WshShortcut_GetTypeInfoCount(IWshShortcut
*iface
, UINT
*pctinfo
)
791 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
792 TRACE("(%p)->(%p)\n", This
, pctinfo
);
797 static HRESULT WINAPI
WshShortcut_GetTypeInfo(IWshShortcut
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
799 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
800 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
801 return get_typeinfo(IWshShortcut_tid
, ppTInfo
);
804 static HRESULT WINAPI
WshShortcut_GetIDsOfNames(IWshShortcut
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
805 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
807 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
811 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
813 hr
= get_typeinfo(IWshShortcut_tid
, &typeinfo
);
816 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
817 ITypeInfo_Release(typeinfo
);
823 static HRESULT WINAPI
WshShortcut_Invoke(IWshShortcut
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
824 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
826 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
830 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
831 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
833 hr
= get_typeinfo(IWshShortcut_tid
, &typeinfo
);
836 hr
= ITypeInfo_Invoke(typeinfo
, &This
->IWshShortcut_iface
, dispIdMember
, wFlags
,
837 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
838 ITypeInfo_Release(typeinfo
);
844 static HRESULT WINAPI
WshShortcut_get_FullName(IWshShortcut
*iface
, BSTR
*name
)
846 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
847 FIXME("(%p)->(%p): stub\n", This
, name
);
851 static HRESULT WINAPI
WshShortcut_get_Arguments(IWshShortcut
*iface
, BSTR
*Arguments
)
853 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
854 WCHAR buffW
[INFOTIPSIZE
];
857 TRACE("(%p)->(%p)\n", This
, Arguments
);
864 hr
= IShellLinkW_GetArguments(This
->link
, buffW
, ARRAY_SIZE(buffW
));
868 *Arguments
= SysAllocString(buffW
);
869 return *Arguments
? S_OK
: E_OUTOFMEMORY
;
872 static HRESULT WINAPI
WshShortcut_put_Arguments(IWshShortcut
*iface
, BSTR Arguments
)
874 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
876 TRACE("(%p)->(%s)\n", This
, debugstr_w(Arguments
));
878 return IShellLinkW_SetArguments(This
->link
, Arguments
);
881 static HRESULT WINAPI
WshShortcut_get_Description(IWshShortcut
*iface
, BSTR
*Description
)
883 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
884 FIXME("(%p)->(%p): stub\n", This
, Description
);
888 static HRESULT WINAPI
WshShortcut_put_Description(IWshShortcut
*iface
, BSTR Description
)
890 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
891 TRACE("(%p)->(%s)\n", This
, debugstr_w(Description
));
892 return IShellLinkW_SetDescription(This
->link
, Description
);
895 static HRESULT WINAPI
WshShortcut_get_Hotkey(IWshShortcut
*iface
, BSTR
*Hotkey
)
897 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
898 FIXME("(%p)->(%p): stub\n", This
, Hotkey
);
902 static HRESULT WINAPI
WshShortcut_put_Hotkey(IWshShortcut
*iface
, BSTR Hotkey
)
904 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
905 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(Hotkey
));
909 static HRESULT WINAPI
WshShortcut_get_IconLocation(IWshShortcut
*iface
, BSTR
*IconPath
)
911 static const WCHAR fmtW
[] = {'%','s',',',' ','%','d',0};
912 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
913 WCHAR buffW
[MAX_PATH
], pathW
[MAX_PATH
];
917 TRACE("(%p)->(%p)\n", This
, IconPath
);
922 hr
= IShellLinkW_GetIconLocation(This
->link
, buffW
, ARRAY_SIZE(buffW
), &icon
);
923 if (FAILED(hr
)) return hr
;
925 swprintf(pathW
, ARRAY_SIZE(pathW
), fmtW
, buffW
, icon
);
926 *IconPath
= SysAllocString(pathW
);
927 if (!*IconPath
) return E_OUTOFMEMORY
;
932 static HRESULT WINAPI
WshShortcut_put_IconLocation(IWshShortcut
*iface
, BSTR IconPath
)
934 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
940 TRACE("(%p)->(%s)\n", This
, debugstr_w(IconPath
));
942 /* scan for icon id */
943 ptr
= wcsrchr(IconPath
, ',');
946 WARN("icon index not found\n");
950 path
= SysAllocStringLen(IconPath
, ptr
-IconPath
);
952 /* skip spaces if any */
953 while (iswspace(*++ptr
))
956 icon
= wcstol(ptr
, NULL
, 10);
958 hr
= IShellLinkW_SetIconLocation(This
->link
, path
, icon
);
964 static HRESULT WINAPI
WshShortcut_put_RelativePath(IWshShortcut
*iface
, BSTR rhs
)
966 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
967 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(rhs
));
971 static HRESULT WINAPI
WshShortcut_get_TargetPath(IWshShortcut
*iface
, BSTR
*Path
)
973 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
974 FIXME("(%p)->(%p): stub\n", This
, Path
);
978 static HRESULT WINAPI
WshShortcut_put_TargetPath(IWshShortcut
*iface
, BSTR Path
)
980 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
981 TRACE("(%p)->(%s)\n", This
, debugstr_w(Path
));
982 return IShellLinkW_SetPath(This
->link
, Path
);
985 static HRESULT WINAPI
WshShortcut_get_WindowStyle(IWshShortcut
*iface
, int *ShowCmd
)
987 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
988 TRACE("(%p)->(%p)\n", This
, ShowCmd
);
989 return IShellLinkW_GetShowCmd(This
->link
, ShowCmd
);
992 static HRESULT WINAPI
WshShortcut_put_WindowStyle(IWshShortcut
*iface
, int ShowCmd
)
994 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
995 TRACE("(%p)->(%d)\n", This
, ShowCmd
);
996 return IShellLinkW_SetShowCmd(This
->link
, ShowCmd
);
999 static HRESULT WINAPI
WshShortcut_get_WorkingDirectory(IWshShortcut
*iface
, BSTR
*WorkingDirectory
)
1001 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
1002 WCHAR buffW
[MAX_PATH
];
1005 TRACE("(%p)->(%p)\n", This
, WorkingDirectory
);
1007 if (!WorkingDirectory
)
1010 *WorkingDirectory
= NULL
;
1011 hr
= IShellLinkW_GetWorkingDirectory(This
->link
, buffW
, ARRAY_SIZE(buffW
));
1012 if (FAILED(hr
)) return hr
;
1014 *WorkingDirectory
= SysAllocString(buffW
);
1015 return *WorkingDirectory
? S_OK
: E_OUTOFMEMORY
;
1018 static HRESULT WINAPI
WshShortcut_put_WorkingDirectory(IWshShortcut
*iface
, BSTR WorkingDirectory
)
1020 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
1021 TRACE("(%p)->(%s)\n", This
, debugstr_w(WorkingDirectory
));
1022 return IShellLinkW_SetWorkingDirectory(This
->link
, WorkingDirectory
);
1025 static HRESULT WINAPI
WshShortcut_Load(IWshShortcut
*iface
, BSTR PathLink
)
1027 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
1028 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(PathLink
));
1032 static HRESULT WINAPI
WshShortcut_Save(IWshShortcut
*iface
)
1034 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
1038 TRACE("(%p)\n", This
);
1040 IShellLinkW_QueryInterface(This
->link
, &IID_IPersistFile
, (void**)&file
);
1041 hr
= IPersistFile_Save(file
, This
->path_link
, TRUE
);
1042 IPersistFile_Release(file
);
1047 static const IWshShortcutVtbl WshShortcutVtbl
= {
1048 WshShortcut_QueryInterface
,
1050 WshShortcut_Release
,
1051 WshShortcut_GetTypeInfoCount
,
1052 WshShortcut_GetTypeInfo
,
1053 WshShortcut_GetIDsOfNames
,
1055 WshShortcut_get_FullName
,
1056 WshShortcut_get_Arguments
,
1057 WshShortcut_put_Arguments
,
1058 WshShortcut_get_Description
,
1059 WshShortcut_put_Description
,
1060 WshShortcut_get_Hotkey
,
1061 WshShortcut_put_Hotkey
,
1062 WshShortcut_get_IconLocation
,
1063 WshShortcut_put_IconLocation
,
1064 WshShortcut_put_RelativePath
,
1065 WshShortcut_get_TargetPath
,
1066 WshShortcut_put_TargetPath
,
1067 WshShortcut_get_WindowStyle
,
1068 WshShortcut_put_WindowStyle
,
1069 WshShortcut_get_WorkingDirectory
,
1070 WshShortcut_put_WorkingDirectory
,
1075 static HRESULT
WshShortcut_Create(const WCHAR
*path
, IDispatch
**shortcut
)
1082 This
= heap_alloc(sizeof(*This
));
1083 if (!This
) return E_OUTOFMEMORY
;
1085 This
->IWshShortcut_iface
.lpVtbl
= &WshShortcutVtbl
;
1088 hr
= CoCreateInstance(&CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
1089 &IID_IShellLinkW
, (void**)&This
->link
);
1096 This
->path_link
= SysAllocString(path
);
1097 if (!This
->path_link
)
1099 IShellLinkW_Release(This
->link
);
1101 return E_OUTOFMEMORY
;
1104 init_classinfo(&IID_IWshShortcut
, (IUnknown
*)&This
->IWshShortcut_iface
, &This
->classinfo
);
1105 *shortcut
= (IDispatch
*)&This
->IWshShortcut_iface
;
1110 static HRESULT WINAPI
WshShell3_QueryInterface(IWshShell3
*iface
, REFIID riid
, void **ppv
)
1112 TRACE("(%s, %p)\n", debugstr_guid(riid
), ppv
);
1116 if (IsEqualGUID(riid
, &IID_IDispatch
) ||
1117 IsEqualGUID(riid
, &IID_IWshShell3
) ||
1118 IsEqualGUID(riid
, &IID_IWshShell2
) ||
1119 IsEqualGUID(riid
, &IID_IWshShell
) ||
1120 IsEqualGUID(riid
, &IID_IUnknown
))
1124 else if (IsEqualGUID(riid
, &IID_IDispatchEx
))
1126 return E_NOINTERFACE
;
1128 else if (IsEqualIID(riid
, &IID_IProvideClassInfo
))
1130 *ppv
= &WshShell3
.classinfo
.IProvideClassInfo_iface
;
1134 WARN("unknown iface %s\n", debugstr_guid(riid
));
1135 return E_NOINTERFACE
;
1138 IUnknown_AddRef((IUnknown
*)*ppv
);
1142 static ULONG WINAPI
WshShell3_AddRef(IWshShell3
*iface
)
1148 static ULONG WINAPI
WshShell3_Release(IWshShell3
*iface
)
1154 static HRESULT WINAPI
WshShell3_GetTypeInfoCount(IWshShell3
*iface
, UINT
*pctinfo
)
1156 TRACE("(%p)\n", pctinfo
);
1161 static HRESULT WINAPI
WshShell3_GetTypeInfo(IWshShell3
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
1163 TRACE("(%u %u %p)\n", iTInfo
, lcid
, ppTInfo
);
1164 return get_typeinfo(IWshShell3_tid
, ppTInfo
);
1167 static HRESULT WINAPI
WshShell3_GetIDsOfNames(IWshShell3
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
1168 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
1170 ITypeInfo
*typeinfo
;
1173 TRACE("(%s %p %u %u %p)\n", debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
1175 hr
= get_typeinfo(IWshShell3_tid
, &typeinfo
);
1178 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
1179 ITypeInfo_Release(typeinfo
);
1185 static HRESULT WINAPI
WshShell3_Invoke(IWshShell3
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
1186 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
1188 ITypeInfo
*typeinfo
;
1191 TRACE("(%d %s %d %d %p %p %p %p)\n", dispIdMember
, debugstr_guid(riid
),
1192 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
1194 hr
= get_typeinfo(IWshShell3_tid
, &typeinfo
);
1197 hr
= ITypeInfo_Invoke(typeinfo
, &WshShell3
.IWshShell3_iface
, dispIdMember
, wFlags
,
1198 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
1199 ITypeInfo_Release(typeinfo
);
1205 static HRESULT WINAPI
WshShell3_get_SpecialFolders(IWshShell3
*iface
, IWshCollection
**folders
)
1207 TRACE("(%p)\n", folders
);
1208 return WshCollection_Create(folders
);
1211 static HRESULT WINAPI
WshShell3_get_Environment(IWshShell3
*iface
, VARIANT
*type
, IWshEnvironment
**env
)
1213 FIXME("(%s %p): semi-stub\n", debugstr_variant(type
), env
);
1214 return WshEnvironment_Create(env
);
1217 static inline BOOL
is_optional_argument(const VARIANT
*arg
)
1219 return V_VT(arg
) == VT_ERROR
&& V_ERROR(arg
) == DISP_E_PARAMNOTFOUND
;
1222 static WCHAR
*split_command( BSTR cmd
, WCHAR
**params
)
1225 BOOL in_quotes
= FALSE
;
1227 if (!(ret
= heap_alloc((lstrlenW(cmd
) + 1) * sizeof(WCHAR
)))) return NULL
;
1228 lstrcpyW( ret
, cmd
);
1231 for (ptr
= ret
; *ptr
; ptr
++)
1233 if (*ptr
== '"') in_quotes
= !in_quotes
;
1234 else if (*ptr
== ' ' && !in_quotes
)
1245 static HRESULT WINAPI
WshShell3_Run(IWshShell3
*iface
, BSTR cmd
, VARIANT
*style
, VARIANT
*wait
, DWORD
*exit_code
)
1247 SHELLEXECUTEINFOW info
;
1249 WCHAR
*file
, *params
;
1254 TRACE("(%s %s %s %p)\n", debugstr_w(cmd
), debugstr_variant(style
), debugstr_variant(wait
), exit_code
);
1256 if (!style
|| !wait
|| !exit_code
)
1260 hr
= VariantChangeType(&s
, style
, 0, VT_I4
);
1263 ERR("failed to convert style argument, 0x%08x\n", hr
);
1267 if (is_optional_argument(wait
))
1273 hr
= VariantChangeType(&w
, wait
, 0, VT_I4
);
1277 waitforprocess
= V_I4(&w
);
1280 if (!(file
= split_command(cmd
, ¶ms
))) return E_OUTOFMEMORY
;
1282 memset(&info
, 0, sizeof(info
));
1283 info
.cbSize
= sizeof(info
);
1284 info
.fMask
= waitforprocess
? SEE_MASK_NOASYNC
| SEE_MASK_NOCLOSEPROCESS
: SEE_MASK_DEFAULT
;
1286 info
.lpParameters
= params
;
1287 info
.nShow
= V_I4(&s
);
1289 ret
= ShellExecuteExW(&info
);
1293 TRACE("ShellExecute failed, %d\n", GetLastError());
1294 return HRESULT_FROM_WIN32(GetLastError());
1300 WaitForSingleObject(info
.hProcess
, INFINITE
);
1301 GetExitCodeProcess(info
.hProcess
, exit_code
);
1302 CloseHandle(info
.hProcess
);
1311 struct popup_thread_param
1319 static DWORD WINAPI
popup_thread_proc(void *arg
)
1321 static const WCHAR defaulttitleW
[] = {'W','i','n','d','o','w','s',' ','S','c','r','i','p','t',' ','H','o','s','t',0};
1322 struct popup_thread_param
*param
= (struct popup_thread_param
*)arg
;
1324 param
->button
= MessageBoxW(NULL
, param
->text
, is_optional_argument(¶m
->title
) ?
1325 defaulttitleW
: V_BSTR(¶m
->title
), V_I4(¶m
->type
));
1329 static HRESULT WINAPI
WshShell3_Popup(IWshShell3
*iface
, BSTR text
, VARIANT
*seconds_to_wait
, VARIANT
*title
,
1330 VARIANT
*type
, int *button
)
1332 struct popup_thread_param param
;
1338 TRACE("(%s %s %s %s %p)\n", debugstr_w(text
), debugstr_variant(seconds_to_wait
), debugstr_variant(title
),
1339 debugstr_variant(type
), button
);
1341 if (!seconds_to_wait
|| !title
|| !type
|| !button
)
1344 VariantInit(&timeout
);
1345 if (!is_optional_argument(seconds_to_wait
))
1347 hr
= VariantChangeType(&timeout
, seconds_to_wait
, 0, VT_I4
);
1352 VariantInit(¶m
.type
);
1353 if (!is_optional_argument(type
))
1355 hr
= VariantChangeType(¶m
.type
, type
, 0, VT_I4
);
1360 if (is_optional_argument(title
))
1361 param
.title
= *title
;
1364 VariantInit(¶m
.title
);
1365 hr
= VariantChangeType(¶m
.title
, title
, 0, VT_BSTR
);
1372 hthread
= CreateThread(NULL
, 0, popup_thread_proc
, ¶m
, 0, &tid
);
1373 status
= MsgWaitForMultipleObjects(1, &hthread
, FALSE
, V_I4(&timeout
) ? V_I4(&timeout
) * 1000: INFINITE
, 0);
1374 if (status
== WAIT_TIMEOUT
)
1376 PostThreadMessageW(tid
, WM_QUIT
, 0, 0);
1377 MsgWaitForMultipleObjects(1, &hthread
, FALSE
, INFINITE
, 0);
1380 *button
= param
.button
;
1382 VariantClear(¶m
.title
);
1383 CloseHandle(hthread
);
1388 static HRESULT WINAPI
WshShell3_CreateShortcut(IWshShell3
*iface
, BSTR PathLink
, IDispatch
** Shortcut
)
1390 TRACE("(%s %p)\n", debugstr_w(PathLink
), Shortcut
);
1391 return WshShortcut_Create(PathLink
, Shortcut
);
1394 static HRESULT WINAPI
WshShell3_ExpandEnvironmentStrings(IWshShell3
*iface
, BSTR Src
, BSTR
* Dst
)
1398 TRACE("(%s %p)\n", debugstr_w(Src
), Dst
);
1400 if (!Src
|| !Dst
) return E_POINTER
;
1402 ret
= ExpandEnvironmentStringsW(Src
, NULL
, 0);
1403 *Dst
= SysAllocStringLen(NULL
, ret
);
1404 if (!*Dst
) return E_OUTOFMEMORY
;
1406 if (ExpandEnvironmentStringsW(Src
, *Dst
, ret
))
1410 SysFreeString(*Dst
);
1412 return HRESULT_FROM_WIN32(GetLastError());
1416 static HKEY
get_root_key(const WCHAR
*path
)
1418 static const struct {
1419 const WCHAR full
[20];
1420 const WCHAR abbrev
[5];
1423 { {'H','K','E','Y','_','C','U','R','R','E','N','T','_','U','S','E','R',0}, {'H','K','C','U',0}, HKEY_CURRENT_USER
},
1424 { {'H','K','E','Y','_','L','O','C','A','L','_','M','A','C','H','I','N','E',0}, {'H','K','L','M',0}, HKEY_LOCAL_MACHINE
},
1425 { {'H','K','E','Y','_','C','L','A','S','S','E','S','_','R','O','O','T',0}, {'H','K','C','R',0}, HKEY_CLASSES_ROOT
},
1426 { {'H','K','E','Y','_','U','S','E','R','S',0}, {0}, HKEY_USERS
},
1427 { {'H','K','E','Y','_','C','U','R','R','E','N','T','_','C','O','N','F','I','G',0}, {0}, HKEY_CURRENT_CONFIG
}
1431 for (i
= 0; i
< ARRAY_SIZE(rootkeys
); i
++) {
1432 if (!wcsncmp(path
, rootkeys
[i
].full
, lstrlenW(rootkeys
[i
].full
)))
1433 return rootkeys
[i
].hkey
;
1434 if (rootkeys
[i
].abbrev
[0] && !wcsncmp(path
, rootkeys
[i
].abbrev
, lstrlenW(rootkeys
[i
].abbrev
)))
1435 return rootkeys
[i
].hkey
;
1441 /* Caller is responsible to free 'subkey' if 'value' is not NULL */
1442 static HRESULT
split_reg_path(const WCHAR
*path
, WCHAR
**subkey
, WCHAR
**value
)
1446 /* at least one separator should be present */
1447 *subkey
= wcschr(path
, '\\');
1449 return HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND
);
1451 /* default value or not */
1452 if ((*subkey
)[lstrlenW(*subkey
)-1] == '\\') {
1457 *value
= wcsrchr(*subkey
, '\\');
1458 if (*value
- *subkey
> 1) {
1459 unsigned int len
= *value
- *subkey
- 1;
1462 ret
= heap_alloc((len
+ 1)*sizeof(WCHAR
));
1464 return E_OUTOFMEMORY
;
1466 memcpy(ret
, *subkey
+ 1, len
*sizeof(WCHAR
));
1476 static HRESULT WINAPI
WshShell3_RegRead(IWshShell3
*iface
, BSTR name
, VARIANT
*value
)
1478 DWORD type
, datalen
, ret
;
1479 WCHAR
*subkey
, *val
;
1483 TRACE("(%s %p)\n", debugstr_w(name
), value
);
1485 if (!name
|| !value
)
1488 root
= get_root_key(name
);
1490 return HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND
);
1492 hr
= split_reg_path(name
, &subkey
, &val
);
1498 ret
= RegGetValueW(root
, subkey
, val
, RRF_RT_ANY
, &type
, NULL
, &datalen
);
1499 if (ret
== ERROR_SUCCESS
) {
1502 data
= heap_alloc(datalen
);
1508 ret
= RegGetValueW(root
, subkey
, val
, RRF_RT_ANY
, &type
, data
, &datalen
);
1511 hr
= HRESULT_FROM_WIN32(ret
);
1518 V_VT(value
) = VT_BSTR
;
1519 V_BSTR(value
) = SysAllocString((WCHAR
*)data
);
1524 V_VT(value
) = VT_I4
;
1525 V_I4(value
) = *(DWORD
*)data
;
1529 BYTE
*ptr
= (BYTE
*)data
;
1530 SAFEARRAYBOUND bound
;
1536 bound
.cElements
= datalen
;
1537 sa
= SafeArrayCreate(VT_VARIANT
, 1, &bound
);
1541 hr
= SafeArrayAccessData(sa
, (void**)&v
);
1543 SafeArrayDestroy(sa
);
1547 for (i
= 0; i
< datalen
; i
++) {
1548 V_VT(&v
[i
]) = VT_UI1
;
1549 V_UI1(&v
[i
]) = ptr
[i
];
1551 SafeArrayUnaccessData(sa
);
1553 V_VT(value
) = VT_ARRAY
|VT_VARIANT
;
1554 V_ARRAY(value
) = sa
;
1559 WCHAR
*ptr
= (WCHAR
*)data
;
1560 SAFEARRAYBOUND bound
;
1564 /* get element count first */
1566 bound
.cElements
= 0;
1569 ptr
+= lstrlenW(ptr
)+1;
1572 sa
= SafeArrayCreate(VT_VARIANT
, 1, &bound
);
1576 hr
= SafeArrayAccessData(sa
, (void**)&v
);
1578 SafeArrayDestroy(sa
);
1585 V_BSTR(v
) = SysAllocString(ptr
);
1586 ptr
+= lstrlenW(ptr
)+1;
1590 SafeArrayUnaccessData(sa
);
1591 V_VT(value
) = VT_ARRAY
|VT_VARIANT
;
1592 V_ARRAY(value
) = sa
;
1596 FIXME("value type %d not supported\n", type
);
1605 hr
= HRESULT_FROM_WIN32(ret
);
1613 static HRESULT WINAPI
WshShell3_RegWrite(IWshShell3
*iface
, BSTR name
, VARIANT
*value
, VARIANT
*type
)
1615 static const WCHAR regexpandszW
[] = {'R','E','G','_','E','X','P','A','N','D','_','S','Z',0};
1616 static const WCHAR regszW
[] = {'R','E','G','_','S','Z',0};
1617 static const WCHAR regdwordW
[] = {'R','E','G','_','D','W','O','R','D',0};
1618 static const WCHAR regbinaryW
[] = {'R','E','G','_','B','I','N','A','R','Y',0};
1620 DWORD regtype
, data_len
;
1621 WCHAR
*subkey
, *val
;
1628 TRACE("(%s %s %s)\n", debugstr_w(name
), debugstr_variant(value
), debugstr_variant(type
));
1630 if (!name
|| !value
|| !type
)
1633 root
= get_root_key(name
);
1635 return HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND
);
1638 if (is_optional_argument(type
))
1641 if (V_VT(type
) != VT_BSTR
)
1642 return E_INVALIDARG
;
1644 if (!wcscmp(V_BSTR(type
), regszW
))
1646 else if (!wcscmp(V_BSTR(type
), regdwordW
))
1647 regtype
= REG_DWORD
;
1648 else if (!wcscmp(V_BSTR(type
), regexpandszW
))
1649 regtype
= REG_EXPAND_SZ
;
1650 else if (!wcscmp(V_BSTR(type
), regbinaryW
))
1651 regtype
= REG_BINARY
;
1653 FIXME("unrecognized value type %s\n", debugstr_w(V_BSTR(type
)));
1658 /* it's always a string or a DWORD */
1664 hr
= VariantChangeType(&v
, value
, 0, VT_BSTR
);
1666 data
= (BYTE
*)V_BSTR(&v
);
1667 data_len
= SysStringByteLen(V_BSTR(&v
)) + sizeof(WCHAR
);
1672 hr
= VariantChangeType(&v
, value
, 0, VT_I4
);
1673 data
= (BYTE
*)&V_I4(&v
);
1674 data_len
= sizeof(DWORD
);
1677 FIXME("unexpected regtype %d\n", regtype
);
1682 FIXME("failed to convert value, regtype %d, 0x%08x\n", regtype
, hr
);
1686 hr
= split_reg_path(name
, &subkey
, &val
);
1690 ret
= RegSetKeyValueW(root
, subkey
, val
, regtype
, data
, data_len
);
1692 hr
= HRESULT_FROM_WIN32(ret
);
1701 static HRESULT WINAPI
WshShell3_RegDelete(IWshShell3
*iface
, BSTR Name
)
1703 FIXME("(%s): stub\n", debugstr_w(Name
));
1707 static HRESULT WINAPI
WshShell3_LogEvent(IWshShell3
*iface
, VARIANT
*Type
, BSTR Message
, BSTR Target
, VARIANT_BOOL
*out_Success
)
1709 FIXME("(%s %s %s %p): stub\n", debugstr_variant(Type
), debugstr_w(Message
), debugstr_w(Target
), out_Success
);
1713 static HRESULT WINAPI
WshShell3_AppActivate(IWshShell3
*iface
, VARIANT
*App
, VARIANT
*Wait
, VARIANT_BOOL
*out_Success
)
1715 FIXME("(%s %s %p): stub\n", debugstr_variant(App
), debugstr_variant(Wait
), out_Success
);
1719 static HRESULT WINAPI
WshShell3_SendKeys(IWshShell3
*iface
, BSTR Keys
, VARIANT
*Wait
)
1721 FIXME("(%s %p): stub\n", debugstr_w(Keys
), Wait
);
1725 static HRESULT WINAPI
WshShell3_Exec(IWshShell3
*iface
, BSTR command
, IWshExec
**ret
)
1727 TRACE("(%s %p)\n", debugstr_w(command
), ret
);
1733 return DISP_E_EXCEPTION
;
1735 return WshExec_create(command
, ret
);
1738 static HRESULT WINAPI
WshShell3_get_CurrentDirectory(IWshShell3
*iface
, BSTR
*dir
)
1742 TRACE("(%p)\n", dir
);
1744 ret
= GetCurrentDirectoryW(0, NULL
);
1746 return HRESULT_FROM_WIN32(GetLastError());
1748 *dir
= SysAllocStringLen(NULL
, ret
-1);
1750 return E_OUTOFMEMORY
;
1752 ret
= GetCurrentDirectoryW(ret
, *dir
);
1754 SysFreeString(*dir
);
1756 return HRESULT_FROM_WIN32(GetLastError());
1762 static HRESULT WINAPI
WshShell3_put_CurrentDirectory(IWshShell3
*iface
, BSTR dir
)
1764 TRACE("(%s)\n", debugstr_w(dir
));
1767 return E_INVALIDARG
;
1769 if (!SetCurrentDirectoryW(dir
))
1770 return HRESULT_FROM_WIN32(GetLastError());
1775 static const IWshShell3Vtbl WshShell3Vtbl
= {
1776 WshShell3_QueryInterface
,
1779 WshShell3_GetTypeInfoCount
,
1780 WshShell3_GetTypeInfo
,
1781 WshShell3_GetIDsOfNames
,
1783 WshShell3_get_SpecialFolders
,
1784 WshShell3_get_Environment
,
1787 WshShell3_CreateShortcut
,
1788 WshShell3_ExpandEnvironmentStrings
,
1791 WshShell3_RegDelete
,
1793 WshShell3_AppActivate
,
1796 WshShell3_get_CurrentDirectory
,
1797 WshShell3_put_CurrentDirectory
1800 HRESULT WINAPI
WshShellFactory_CreateInstance(IClassFactory
*iface
, IUnknown
*outer
, REFIID riid
, void **ppv
)
1802 TRACE("(%p %s %p)\n", outer
, debugstr_guid(riid
), ppv
);
1804 WshShell3
.IWshShell3_iface
.lpVtbl
= &WshShell3Vtbl
;
1805 init_classinfo(&IID_IWshShell3
, (IUnknown
*)&WshShell3
.IWshShell3_iface
, &WshShell3
.classinfo
);
1806 return IWshShell3_QueryInterface(&WshShell3
.IWshShell3_iface
, riid
, ppv
);