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/unicode.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
);
133 HeapFree(GetProcessHeap(), 0, This
);
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
= HeapAlloc(GetProcessHeap(), 0, 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
)) {
336 HeapFree(GetProcessHeap(), 0, This
);
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
);
386 HeapFree(GetProcessHeap(), 0, This
);
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);
457 *value
= SysAllocStringLen(NULL
, len
);
459 return E_OUTOFMEMORY
;
462 GetEnvironmentVariableW(name
, *value
, len
+1);
467 static HRESULT WINAPI
WshEnvironment_put_Item(IWshEnvironment
*iface
, BSTR name
, BSTR value
)
469 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
470 FIXME("(%p)->(%s %s): stub\n", This
, debugstr_w(name
), debugstr_w(value
));
474 static HRESULT WINAPI
WshEnvironment_Count(IWshEnvironment
*iface
, LONG
*count
)
476 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
477 FIXME("(%p)->(%p): stub\n", This
, count
);
481 static HRESULT WINAPI
WshEnvironment_get_length(IWshEnvironment
*iface
, LONG
*len
)
483 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
484 FIXME("(%p)->(%p): stub\n", This
, len
);
488 static HRESULT WINAPI
WshEnvironment__NewEnum(IWshEnvironment
*iface
, IUnknown
**penum
)
490 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
491 FIXME("(%p)->(%p): stub\n", This
, penum
);
495 static HRESULT WINAPI
WshEnvironment_Remove(IWshEnvironment
*iface
, BSTR name
)
497 WshEnvironment
*This
= impl_from_IWshEnvironment(iface
);
498 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(name
));
502 static const IWshEnvironmentVtbl WshEnvironmentVtbl
= {
503 WshEnvironment_QueryInterface
,
504 WshEnvironment_AddRef
,
505 WshEnvironment_Release
,
506 WshEnvironment_GetTypeInfoCount
,
507 WshEnvironment_GetTypeInfo
,
508 WshEnvironment_GetIDsOfNames
,
509 WshEnvironment_Invoke
,
510 WshEnvironment_get_Item
,
511 WshEnvironment_put_Item
,
512 WshEnvironment_Count
,
513 WshEnvironment_get_length
,
514 WshEnvironment__NewEnum
,
515 WshEnvironment_Remove
518 static HRESULT
WshEnvironment_Create(IWshEnvironment
**env
)
520 WshEnvironment
*This
;
522 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
523 if (!This
) return E_OUTOFMEMORY
;
525 This
->IWshEnvironment_iface
.lpVtbl
= &WshEnvironmentVtbl
;
528 init_classinfo(&IID_IWshEnvironment
, (IUnknown
*)&This
->IWshEnvironment_iface
, &This
->classinfo
);
529 *env
= &This
->IWshEnvironment_iface
;
534 static HRESULT WINAPI
WshCollection_QueryInterface(IWshCollection
*iface
, REFIID riid
, void **ppv
)
536 WshCollection
*This
= impl_from_IWshCollection(iface
);
538 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
540 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
541 IsEqualGUID(riid
, &IID_IDispatch
) ||
542 IsEqualGUID(riid
, &IID_IWshCollection
))
546 else if (IsEqualIID(riid
, &IID_IProvideClassInfo
))
548 *ppv
= &This
->classinfo
.IProvideClassInfo_iface
;
551 FIXME("Unknown iface %s\n", debugstr_guid(riid
));
553 return E_NOINTERFACE
;
556 IUnknown_AddRef((IUnknown
*)*ppv
);
560 static ULONG WINAPI
WshCollection_AddRef(IWshCollection
*iface
)
562 WshCollection
*This
= impl_from_IWshCollection(iface
);
563 LONG ref
= InterlockedIncrement(&This
->ref
);
564 TRACE("(%p) ref = %d\n", This
, ref
);
568 static ULONG WINAPI
WshCollection_Release(IWshCollection
*iface
)
570 WshCollection
*This
= impl_from_IWshCollection(iface
);
571 LONG ref
= InterlockedDecrement(&This
->ref
);
572 TRACE("(%p) ref = %d\n", This
, ref
);
575 HeapFree(GetProcessHeap(), 0, This
);
580 static HRESULT WINAPI
WshCollection_GetTypeInfoCount(IWshCollection
*iface
, UINT
*pctinfo
)
582 WshCollection
*This
= impl_from_IWshCollection(iface
);
583 TRACE("(%p)->(%p)\n", This
, pctinfo
);
588 static HRESULT WINAPI
WshCollection_GetTypeInfo(IWshCollection
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
590 WshCollection
*This
= impl_from_IWshCollection(iface
);
591 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
592 return get_typeinfo(IWshCollection_tid
, ppTInfo
);
595 static HRESULT WINAPI
WshCollection_GetIDsOfNames(IWshCollection
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
596 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
598 WshCollection
*This
= impl_from_IWshCollection(iface
);
602 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
604 hr
= get_typeinfo(IWshCollection_tid
, &typeinfo
);
607 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
608 ITypeInfo_Release(typeinfo
);
614 static HRESULT WINAPI
WshCollection_Invoke(IWshCollection
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
615 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
617 WshCollection
*This
= impl_from_IWshCollection(iface
);
621 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
622 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
624 hr
= get_typeinfo(IWshCollection_tid
, &typeinfo
);
627 hr
= ITypeInfo_Invoke(typeinfo
, &This
->IWshCollection_iface
, dispIdMember
, wFlags
,
628 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
629 ITypeInfo_Release(typeinfo
);
635 static HRESULT WINAPI
WshCollection_Item(IWshCollection
*iface
, VARIANT
*index
, VARIANT
*value
)
637 WshCollection
*This
= impl_from_IWshCollection(iface
);
638 static const WCHAR allusersdesktopW
[] = {'A','l','l','U','s','e','r','s','D','e','s','k','t','o','p',0};
639 static const WCHAR allusersprogramsW
[] = {'A','l','l','U','s','e','r','s','P','r','o','g','r','a','m','s',0};
640 static const WCHAR desktopW
[] = {'D','e','s','k','t','o','p',0};
641 PIDLIST_ABSOLUTE pidl
;
642 WCHAR pathW
[MAX_PATH
];
647 TRACE("(%p)->(%s %p)\n", This
, debugstr_variant(index
), value
);
649 if (V_VT(index
) != VT_BSTR
)
651 FIXME("only BSTR index supported, got %d\n", V_VT(index
));
655 folder
= V_BSTR(index
);
656 if (!strcmpiW(folder
, desktopW
))
657 kind
= CSIDL_DESKTOP
;
658 else if (!strcmpiW(folder
, allusersdesktopW
))
659 kind
= CSIDL_COMMON_DESKTOPDIRECTORY
;
660 else if (!strcmpiW(folder
, allusersprogramsW
))
661 kind
= CSIDL_COMMON_PROGRAMS
;
664 FIXME("folder kind %s not supported\n", debugstr_w(folder
));
668 hr
= SHGetSpecialFolderLocation(NULL
, kind
, &pidl
);
669 if (hr
!= S_OK
) return hr
;
671 if (SHGetPathFromIDListW(pidl
, pathW
))
673 V_VT(value
) = VT_BSTR
;
674 V_BSTR(value
) = SysAllocString(pathW
);
675 hr
= V_BSTR(value
) ? S_OK
: E_OUTOFMEMORY
;
685 static HRESULT WINAPI
WshCollection_Count(IWshCollection
*iface
, LONG
*count
)
687 WshCollection
*This
= impl_from_IWshCollection(iface
);
688 FIXME("(%p)->(%p): stub\n", This
, count
);
692 static HRESULT WINAPI
WshCollection_get_length(IWshCollection
*iface
, LONG
*count
)
694 WshCollection
*This
= impl_from_IWshCollection(iface
);
695 FIXME("(%p)->(%p): stub\n", This
, count
);
699 static HRESULT WINAPI
WshCollection__NewEnum(IWshCollection
*iface
, IUnknown
*Enum
)
701 WshCollection
*This
= impl_from_IWshCollection(iface
);
702 FIXME("(%p)->(%p): stub\n", This
, Enum
);
706 static const IWshCollectionVtbl WshCollectionVtbl
= {
707 WshCollection_QueryInterface
,
708 WshCollection_AddRef
,
709 WshCollection_Release
,
710 WshCollection_GetTypeInfoCount
,
711 WshCollection_GetTypeInfo
,
712 WshCollection_GetIDsOfNames
,
713 WshCollection_Invoke
,
716 WshCollection_get_length
,
717 WshCollection__NewEnum
720 static HRESULT
WshCollection_Create(IWshCollection
**collection
)
724 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
725 if (!This
) return E_OUTOFMEMORY
;
727 This
->IWshCollection_iface
.lpVtbl
= &WshCollectionVtbl
;
730 init_classinfo(&IID_IWshCollection
, (IUnknown
*)&This
->IWshCollection_iface
, &This
->classinfo
);
731 *collection
= &This
->IWshCollection_iface
;
737 static HRESULT WINAPI
WshShortcut_QueryInterface(IWshShortcut
*iface
, REFIID riid
, void **ppv
)
739 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
741 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppv
);
743 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
744 IsEqualGUID(riid
, &IID_IDispatch
) ||
745 IsEqualGUID(riid
, &IID_IWshShortcut
))
749 else if (IsEqualIID(riid
, &IID_IProvideClassInfo
))
751 *ppv
= &This
->classinfo
.IProvideClassInfo_iface
;
754 FIXME("Unknown iface %s\n", debugstr_guid(riid
));
756 return E_NOINTERFACE
;
759 IUnknown_AddRef((IUnknown
*)*ppv
);
763 static ULONG WINAPI
WshShortcut_AddRef(IWshShortcut
*iface
)
765 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
766 LONG ref
= InterlockedIncrement(&This
->ref
);
767 TRACE("(%p) ref = %d\n", This
, ref
);
771 static ULONG WINAPI
WshShortcut_Release(IWshShortcut
*iface
)
773 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
774 LONG ref
= InterlockedDecrement(&This
->ref
);
775 TRACE("(%p) ref = %d\n", This
, ref
);
779 SysFreeString(This
->path_link
);
780 IShellLinkW_Release(This
->link
);
781 HeapFree(GetProcessHeap(), 0, This
);
787 static HRESULT WINAPI
WshShortcut_GetTypeInfoCount(IWshShortcut
*iface
, UINT
*pctinfo
)
789 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
790 TRACE("(%p)->(%p)\n", This
, pctinfo
);
795 static HRESULT WINAPI
WshShortcut_GetTypeInfo(IWshShortcut
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
797 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
798 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
799 return get_typeinfo(IWshShortcut_tid
, ppTInfo
);
802 static HRESULT WINAPI
WshShortcut_GetIDsOfNames(IWshShortcut
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
803 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
805 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
809 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
811 hr
= get_typeinfo(IWshShortcut_tid
, &typeinfo
);
814 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
815 ITypeInfo_Release(typeinfo
);
821 static HRESULT WINAPI
WshShortcut_Invoke(IWshShortcut
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
822 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
824 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
828 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
829 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
831 hr
= get_typeinfo(IWshShortcut_tid
, &typeinfo
);
834 hr
= ITypeInfo_Invoke(typeinfo
, &This
->IWshShortcut_iface
, dispIdMember
, wFlags
,
835 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
836 ITypeInfo_Release(typeinfo
);
842 static HRESULT WINAPI
WshShortcut_get_FullName(IWshShortcut
*iface
, BSTR
*name
)
844 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
845 FIXME("(%p)->(%p): stub\n", This
, name
);
849 static HRESULT WINAPI
WshShortcut_get_Arguments(IWshShortcut
*iface
, BSTR
*Arguments
)
851 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
852 WCHAR buffW
[INFOTIPSIZE
];
855 TRACE("(%p)->(%p)\n", This
, Arguments
);
862 hr
= IShellLinkW_GetArguments(This
->link
, buffW
, sizeof(buffW
)/sizeof(WCHAR
));
866 *Arguments
= SysAllocString(buffW
);
867 return *Arguments
? S_OK
: E_OUTOFMEMORY
;
870 static HRESULT WINAPI
WshShortcut_put_Arguments(IWshShortcut
*iface
, BSTR Arguments
)
872 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
874 TRACE("(%p)->(%s)\n", This
, debugstr_w(Arguments
));
876 return IShellLinkW_SetArguments(This
->link
, Arguments
);
879 static HRESULT WINAPI
WshShortcut_get_Description(IWshShortcut
*iface
, BSTR
*Description
)
881 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
882 FIXME("(%p)->(%p): stub\n", This
, Description
);
886 static HRESULT WINAPI
WshShortcut_put_Description(IWshShortcut
*iface
, BSTR Description
)
888 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
889 TRACE("(%p)->(%s)\n", This
, debugstr_w(Description
));
890 return IShellLinkW_SetDescription(This
->link
, Description
);
893 static HRESULT WINAPI
WshShortcut_get_Hotkey(IWshShortcut
*iface
, BSTR
*Hotkey
)
895 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
896 FIXME("(%p)->(%p): stub\n", This
, Hotkey
);
900 static HRESULT WINAPI
WshShortcut_put_Hotkey(IWshShortcut
*iface
, BSTR Hotkey
)
902 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
903 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(Hotkey
));
907 static HRESULT WINAPI
WshShortcut_get_IconLocation(IWshShortcut
*iface
, BSTR
*IconPath
)
909 static const WCHAR fmtW
[] = {'%','s',',',' ','%','d',0};
910 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
911 WCHAR buffW
[MAX_PATH
], pathW
[MAX_PATH
];
915 TRACE("(%p)->(%p)\n", This
, IconPath
);
920 hr
= IShellLinkW_GetIconLocation(This
->link
, buffW
, sizeof(buffW
)/sizeof(WCHAR
), &icon
);
921 if (FAILED(hr
)) return hr
;
923 sprintfW(pathW
, fmtW
, buffW
, icon
);
924 *IconPath
= SysAllocString(pathW
);
925 if (!*IconPath
) return E_OUTOFMEMORY
;
930 static HRESULT WINAPI
WshShortcut_put_IconLocation(IWshShortcut
*iface
, BSTR IconPath
)
932 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
938 TRACE("(%p)->(%s)\n", This
, debugstr_w(IconPath
));
940 /* scan for icon id */
941 ptr
= strrchrW(IconPath
, ',');
944 WARN("icon index not found\n");
948 path
= SysAllocStringLen(IconPath
, ptr
-IconPath
);
950 /* skip spaces if any */
951 while (isspaceW(*++ptr
))
956 hr
= IShellLinkW_SetIconLocation(This
->link
, path
, icon
);
962 static HRESULT WINAPI
WshShortcut_put_RelativePath(IWshShortcut
*iface
, BSTR rhs
)
964 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
965 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(rhs
));
969 static HRESULT WINAPI
WshShortcut_get_TargetPath(IWshShortcut
*iface
, BSTR
*Path
)
971 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
972 FIXME("(%p)->(%p): stub\n", This
, Path
);
976 static HRESULT WINAPI
WshShortcut_put_TargetPath(IWshShortcut
*iface
, BSTR Path
)
978 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
979 TRACE("(%p)->(%s)\n", This
, debugstr_w(Path
));
980 return IShellLinkW_SetPath(This
->link
, Path
);
983 static HRESULT WINAPI
WshShortcut_get_WindowStyle(IWshShortcut
*iface
, int *ShowCmd
)
985 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
986 TRACE("(%p)->(%p)\n", This
, ShowCmd
);
987 return IShellLinkW_GetShowCmd(This
->link
, ShowCmd
);
990 static HRESULT WINAPI
WshShortcut_put_WindowStyle(IWshShortcut
*iface
, int ShowCmd
)
992 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
993 TRACE("(%p)->(%d)\n", This
, ShowCmd
);
994 return IShellLinkW_SetShowCmd(This
->link
, ShowCmd
);
997 static HRESULT WINAPI
WshShortcut_get_WorkingDirectory(IWshShortcut
*iface
, BSTR
*WorkingDirectory
)
999 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
1000 WCHAR buffW
[MAX_PATH
];
1003 TRACE("(%p)->(%p)\n", This
, WorkingDirectory
);
1005 if (!WorkingDirectory
)
1008 *WorkingDirectory
= NULL
;
1009 hr
= IShellLinkW_GetWorkingDirectory(This
->link
, buffW
, sizeof(buffW
)/sizeof(WCHAR
));
1010 if (FAILED(hr
)) return hr
;
1012 *WorkingDirectory
= SysAllocString(buffW
);
1013 return *WorkingDirectory
? S_OK
: E_OUTOFMEMORY
;
1016 static HRESULT WINAPI
WshShortcut_put_WorkingDirectory(IWshShortcut
*iface
, BSTR WorkingDirectory
)
1018 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
1019 TRACE("(%p)->(%s)\n", This
, debugstr_w(WorkingDirectory
));
1020 return IShellLinkW_SetWorkingDirectory(This
->link
, WorkingDirectory
);
1023 static HRESULT WINAPI
WshShortcut_Load(IWshShortcut
*iface
, BSTR PathLink
)
1025 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
1026 FIXME("(%p)->(%s): stub\n", This
, debugstr_w(PathLink
));
1030 static HRESULT WINAPI
WshShortcut_Save(IWshShortcut
*iface
)
1032 WshShortcut
*This
= impl_from_IWshShortcut(iface
);
1036 TRACE("(%p)\n", This
);
1038 IShellLinkW_QueryInterface(This
->link
, &IID_IPersistFile
, (void**)&file
);
1039 hr
= IPersistFile_Save(file
, This
->path_link
, TRUE
);
1040 IPersistFile_Release(file
);
1045 static const IWshShortcutVtbl WshShortcutVtbl
= {
1046 WshShortcut_QueryInterface
,
1048 WshShortcut_Release
,
1049 WshShortcut_GetTypeInfoCount
,
1050 WshShortcut_GetTypeInfo
,
1051 WshShortcut_GetIDsOfNames
,
1053 WshShortcut_get_FullName
,
1054 WshShortcut_get_Arguments
,
1055 WshShortcut_put_Arguments
,
1056 WshShortcut_get_Description
,
1057 WshShortcut_put_Description
,
1058 WshShortcut_get_Hotkey
,
1059 WshShortcut_put_Hotkey
,
1060 WshShortcut_get_IconLocation
,
1061 WshShortcut_put_IconLocation
,
1062 WshShortcut_put_RelativePath
,
1063 WshShortcut_get_TargetPath
,
1064 WshShortcut_put_TargetPath
,
1065 WshShortcut_get_WindowStyle
,
1066 WshShortcut_put_WindowStyle
,
1067 WshShortcut_get_WorkingDirectory
,
1068 WshShortcut_put_WorkingDirectory
,
1073 static HRESULT
WshShortcut_Create(const WCHAR
*path
, IDispatch
**shortcut
)
1080 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
1081 if (!This
) return E_OUTOFMEMORY
;
1083 This
->IWshShortcut_iface
.lpVtbl
= &WshShortcutVtbl
;
1086 hr
= CoCreateInstance(&CLSID_ShellLink
, NULL
, CLSCTX_INPROC_SERVER
,
1087 &IID_IShellLinkW
, (void**)&This
->link
);
1090 HeapFree(GetProcessHeap(), 0, This
);
1094 This
->path_link
= SysAllocString(path
);
1095 if (!This
->path_link
)
1097 IShellLinkW_Release(This
->link
);
1098 HeapFree(GetProcessHeap(), 0, This
);
1099 return E_OUTOFMEMORY
;
1102 init_classinfo(&IID_IWshShortcut
, (IUnknown
*)&This
->IWshShortcut_iface
, &This
->classinfo
);
1103 *shortcut
= (IDispatch
*)&This
->IWshShortcut_iface
;
1108 static HRESULT WINAPI
WshShell3_QueryInterface(IWshShell3
*iface
, REFIID riid
, void **ppv
)
1110 TRACE("(%s, %p)\n", debugstr_guid(riid
), ppv
);
1114 if (IsEqualGUID(riid
, &IID_IDispatch
) ||
1115 IsEqualGUID(riid
, &IID_IWshShell3
) ||
1116 IsEqualGUID(riid
, &IID_IWshShell2
) ||
1117 IsEqualGUID(riid
, &IID_IWshShell
) ||
1118 IsEqualGUID(riid
, &IID_IUnknown
))
1122 else if (IsEqualGUID(riid
, &IID_IDispatchEx
))
1124 return E_NOINTERFACE
;
1126 else if (IsEqualIID(riid
, &IID_IProvideClassInfo
))
1128 *ppv
= &WshShell3
.classinfo
.IProvideClassInfo_iface
;
1132 WARN("unknown iface %s\n", debugstr_guid(riid
));
1133 return E_NOINTERFACE
;
1136 IUnknown_AddRef((IUnknown
*)*ppv
);
1140 static ULONG WINAPI
WshShell3_AddRef(IWshShell3
*iface
)
1146 static ULONG WINAPI
WshShell3_Release(IWshShell3
*iface
)
1152 static HRESULT WINAPI
WshShell3_GetTypeInfoCount(IWshShell3
*iface
, UINT
*pctinfo
)
1154 TRACE("(%p)\n", pctinfo
);
1159 static HRESULT WINAPI
WshShell3_GetTypeInfo(IWshShell3
*iface
, UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
1161 TRACE("(%u %u %p)\n", iTInfo
, lcid
, ppTInfo
);
1162 return get_typeinfo(IWshShell3_tid
, ppTInfo
);
1165 static HRESULT WINAPI
WshShell3_GetIDsOfNames(IWshShell3
*iface
, REFIID riid
, LPOLESTR
*rgszNames
,
1166 UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
1168 ITypeInfo
*typeinfo
;
1171 TRACE("(%s %p %u %u %p)\n", debugstr_guid(riid
), rgszNames
, cNames
, lcid
, rgDispId
);
1173 hr
= get_typeinfo(IWshShell3_tid
, &typeinfo
);
1176 hr
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
1177 ITypeInfo_Release(typeinfo
);
1183 static HRESULT WINAPI
WshShell3_Invoke(IWshShell3
*iface
, DISPID dispIdMember
, REFIID riid
, LCID lcid
,
1184 WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
1186 ITypeInfo
*typeinfo
;
1189 TRACE("(%d %s %d %d %p %p %p %p)\n", dispIdMember
, debugstr_guid(riid
),
1190 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
1192 hr
= get_typeinfo(IWshShell3_tid
, &typeinfo
);
1195 hr
= ITypeInfo_Invoke(typeinfo
, &WshShell3
, dispIdMember
, wFlags
,
1196 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
1197 ITypeInfo_Release(typeinfo
);
1203 static HRESULT WINAPI
WshShell3_get_SpecialFolders(IWshShell3
*iface
, IWshCollection
**folders
)
1205 TRACE("(%p)\n", folders
);
1206 return WshCollection_Create(folders
);
1209 static HRESULT WINAPI
WshShell3_get_Environment(IWshShell3
*iface
, VARIANT
*type
, IWshEnvironment
**env
)
1211 FIXME("(%s %p): semi-stub\n", debugstr_variant(type
), env
);
1212 return WshEnvironment_Create(env
);
1215 static inline BOOL
is_optional_argument(const VARIANT
*arg
)
1217 return V_VT(arg
) == VT_ERROR
&& V_ERROR(arg
) == DISP_E_PARAMNOTFOUND
;
1220 static HRESULT WINAPI
WshShell3_Run(IWshShell3
*iface
, BSTR cmd
, VARIANT
*style
, VARIANT
*wait
, DWORD
*exit_code
)
1222 SHELLEXECUTEINFOW info
;
1227 TRACE("(%s %s %s %p)\n", debugstr_w(cmd
), debugstr_variant(style
), debugstr_variant(wait
), exit_code
);
1229 if (!style
|| !wait
|| !exit_code
)
1233 hr
= VariantChangeType(&s
, style
, 0, VT_I4
);
1236 ERR("failed to convert style argument, 0x%08x\n", hr
);
1240 if (is_optional_argument(wait
))
1246 hr
= VariantChangeType(&w
, wait
, 0, VT_I4
);
1250 waitforprocess
= V_I4(&w
);
1253 memset(&info
, 0, sizeof(info
));
1254 info
.cbSize
= sizeof(info
);
1255 info
.fMask
= waitforprocess
? SEE_MASK_NOASYNC
| SEE_MASK_NOCLOSEPROCESS
: SEE_MASK_DEFAULT
;
1257 info
.nShow
= V_I4(&s
);
1259 if (!ShellExecuteExW(&info
))
1261 TRACE("ShellExecute failed, %d\n", GetLastError());
1262 return HRESULT_FROM_WIN32(GetLastError());
1268 GetExitCodeProcess(info
.hProcess
, exit_code
);
1269 CloseHandle(info
.hProcess
);
1278 static HRESULT WINAPI
WshShell3_Popup(IWshShell3
*iface
, BSTR Text
, VARIANT
* SecondsToWait
, VARIANT
*Title
, VARIANT
*Type
, int *button
)
1280 FIXME("(%s %s %s %s %p): stub\n", debugstr_w(Text
), debugstr_variant(SecondsToWait
),
1281 debugstr_variant(Title
), debugstr_variant(Type
), button
);
1285 static HRESULT WINAPI
WshShell3_CreateShortcut(IWshShell3
*iface
, BSTR PathLink
, IDispatch
** Shortcut
)
1287 TRACE("(%s %p)\n", debugstr_w(PathLink
), Shortcut
);
1288 return WshShortcut_Create(PathLink
, Shortcut
);
1291 static HRESULT WINAPI
WshShell3_ExpandEnvironmentStrings(IWshShell3
*iface
, BSTR Src
, BSTR
* Dst
)
1295 TRACE("(%s %p)\n", debugstr_w(Src
), Dst
);
1297 if (!Src
|| !Dst
) return E_POINTER
;
1299 ret
= ExpandEnvironmentStringsW(Src
, NULL
, 0);
1300 *Dst
= SysAllocStringLen(NULL
, ret
);
1301 if (!*Dst
) return E_OUTOFMEMORY
;
1303 if (ExpandEnvironmentStringsW(Src
, *Dst
, ret
))
1307 SysFreeString(*Dst
);
1309 return HRESULT_FROM_WIN32(GetLastError());
1313 static HKEY
get_root_key(const WCHAR
*path
)
1315 static const struct {
1316 const WCHAR full
[20];
1317 const WCHAR abbrev
[5];
1320 { {'H','K','E','Y','_','C','U','R','R','E','N','T','_','U','S','E','R',0}, {'H','K','C','U',0}, HKEY_CURRENT_USER
},
1321 { {'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
},
1322 { {'H','K','E','Y','_','C','L','A','S','S','E','S','_','R','O','O','T',0}, {'H','K','C','R',0}, HKEY_CLASSES_ROOT
},
1323 { {'H','K','E','Y','_','U','S','E','R','S',0}, {0}, HKEY_USERS
},
1324 { {'H','K','E','Y','_','C','U','R','R','E','N','T','_','C','O','N','F','I','G',0}, {0}, HKEY_CURRENT_CONFIG
}
1328 for (i
= 0; i
< sizeof(rootkeys
)/sizeof(rootkeys
[0]); i
++) {
1329 if (!strncmpW(path
, rootkeys
[i
].full
, strlenW(rootkeys
[i
].full
)))
1330 return rootkeys
[i
].hkey
;
1331 if (rootkeys
[i
].abbrev
[0] && !strncmpW(path
, rootkeys
[i
].abbrev
, strlenW(rootkeys
[i
].abbrev
)))
1332 return rootkeys
[i
].hkey
;
1338 /* Caller is responsible to free 'subkey' if 'value' is not NULL */
1339 static HRESULT
split_reg_path(const WCHAR
*path
, WCHAR
**subkey
, WCHAR
**value
)
1343 /* at least one separator should be present */
1344 *subkey
= strchrW(path
, '\\');
1346 return HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND
);
1348 /* default value or not */
1349 if ((*subkey
)[strlenW(*subkey
)-1] == '\\') {
1354 *value
= strrchrW(*subkey
, '\\');
1355 if (*value
- *subkey
> 1) {
1356 unsigned int len
= *value
- *subkey
- 1;
1359 ret
= HeapAlloc(GetProcessHeap(), 0, (len
+1)*sizeof(WCHAR
));
1361 return E_OUTOFMEMORY
;
1363 memcpy(ret
, *subkey
+ 1, len
*sizeof(WCHAR
));
1373 static HRESULT WINAPI
WshShell3_RegRead(IWshShell3
*iface
, BSTR name
, VARIANT
*value
)
1375 DWORD type
, datalen
, ret
;
1376 WCHAR
*subkey
, *val
;
1380 TRACE("(%s %p)\n", debugstr_w(name
), value
);
1382 if (!name
|| !value
)
1385 root
= get_root_key(name
);
1387 return HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND
);
1389 hr
= split_reg_path(name
, &subkey
, &val
);
1395 ret
= RegGetValueW(root
, subkey
, val
, RRF_RT_ANY
, &type
, NULL
, &datalen
);
1396 if (ret
== ERROR_SUCCESS
) {
1399 data
= HeapAlloc(GetProcessHeap(), 0, datalen
);
1405 ret
= RegGetValueW(root
, subkey
, val
, RRF_RT_ANY
, &type
, data
, &datalen
);
1407 HeapFree(GetProcessHeap(), 0, data
);
1408 hr
= HRESULT_FROM_WIN32(ret
);
1415 V_VT(value
) = VT_BSTR
;
1416 V_BSTR(value
) = SysAllocString((WCHAR
*)data
);
1421 V_VT(value
) = VT_I4
;
1422 V_I4(value
) = *(DWORD
*)data
;
1426 BYTE
*ptr
= (BYTE
*)data
;
1427 SAFEARRAYBOUND bound
;
1433 bound
.cElements
= datalen
;
1434 sa
= SafeArrayCreate(VT_VARIANT
, 1, &bound
);
1438 hr
= SafeArrayAccessData(sa
, (void**)&v
);
1440 SafeArrayDestroy(sa
);
1444 for (i
= 0; i
< datalen
; i
++) {
1445 V_VT(&v
[i
]) = VT_UI1
;
1446 V_UI1(&v
[i
]) = ptr
[i
];
1448 SafeArrayUnaccessData(sa
);
1450 V_VT(value
) = VT_ARRAY
|VT_VARIANT
;
1451 V_ARRAY(value
) = sa
;
1456 WCHAR
*ptr
= (WCHAR
*)data
;
1457 SAFEARRAYBOUND bound
;
1461 /* get element count first */
1463 bound
.cElements
= 0;
1466 ptr
+= strlenW(ptr
)+1;
1469 sa
= SafeArrayCreate(VT_VARIANT
, 1, &bound
);
1473 hr
= SafeArrayAccessData(sa
, (void**)&v
);
1475 SafeArrayDestroy(sa
);
1482 V_BSTR(v
) = SysAllocString(ptr
);
1483 ptr
+= strlenW(ptr
)+1;
1487 SafeArrayUnaccessData(sa
);
1488 V_VT(value
) = VT_ARRAY
|VT_VARIANT
;
1489 V_ARRAY(value
) = sa
;
1493 FIXME("value type %d not supported\n", type
);
1497 HeapFree(GetProcessHeap(), 0, data
);
1502 hr
= HRESULT_FROM_WIN32(ret
);
1506 HeapFree(GetProcessHeap(), 0, subkey
);
1510 static HRESULT WINAPI
WshShell3_RegWrite(IWshShell3
*iface
, BSTR name
, VARIANT
*value
, VARIANT
*type
)
1512 static const WCHAR regexpandszW
[] = {'R','E','G','_','E','X','P','A','N','D','_','S','Z',0};
1513 static const WCHAR regszW
[] = {'R','E','G','_','S','Z',0};
1514 static const WCHAR regdwordW
[] = {'R','E','G','_','D','W','O','R','D',0};
1515 static const WCHAR regbinaryW
[] = {'R','E','G','_','B','I','N','A','R','Y',0};
1517 DWORD regtype
, data_len
;
1518 WCHAR
*subkey
, *val
;
1525 TRACE("(%s %s %s)\n", debugstr_w(name
), debugstr_variant(value
), debugstr_variant(type
));
1527 if (!name
|| !value
|| !type
)
1530 root
= get_root_key(name
);
1532 return HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND
);
1535 if (is_optional_argument(type
))
1538 if (V_VT(type
) != VT_BSTR
)
1539 return E_INVALIDARG
;
1541 if (!strcmpW(V_BSTR(type
), regszW
))
1543 else if (!strcmpW(V_BSTR(type
), regdwordW
))
1544 regtype
= REG_DWORD
;
1545 else if (!strcmpW(V_BSTR(type
), regexpandszW
))
1546 regtype
= REG_EXPAND_SZ
;
1547 else if (!strcmpW(V_BSTR(type
), regbinaryW
))
1548 regtype
= REG_BINARY
;
1550 FIXME("unrecognized value type %s\n", debugstr_w(V_BSTR(type
)));
1555 /* it's always a string or a DWORD */
1561 hr
= VariantChangeType(&v
, value
, 0, VT_BSTR
);
1563 data
= (BYTE
*)V_BSTR(&v
);
1564 data_len
= SysStringByteLen(V_BSTR(&v
)) + sizeof(WCHAR
);
1569 hr
= VariantChangeType(&v
, value
, 0, VT_I4
);
1570 data
= (BYTE
*)&V_I4(&v
);
1571 data_len
= sizeof(DWORD
);
1574 FIXME("unexpected regtype %d\n", regtype
);
1579 FIXME("failed to convert value, regtype %d, 0x%08x\n", regtype
, hr
);
1583 hr
= split_reg_path(name
, &subkey
, &val
);
1587 ret
= RegSetKeyValueW(root
, subkey
, val
, regtype
, data
, data_len
);
1589 hr
= HRESULT_FROM_WIN32(ret
);
1594 HeapFree(GetProcessHeap(), 0, subkey
);
1598 static HRESULT WINAPI
WshShell3_RegDelete(IWshShell3
*iface
, BSTR Name
)
1600 FIXME("(%s): stub\n", debugstr_w(Name
));
1604 static HRESULT WINAPI
WshShell3_LogEvent(IWshShell3
*iface
, VARIANT
*Type
, BSTR Message
, BSTR Target
, VARIANT_BOOL
*out_Success
)
1606 FIXME("(%s %s %s %p): stub\n", debugstr_variant(Type
), debugstr_w(Message
), debugstr_w(Target
), out_Success
);
1610 static HRESULT WINAPI
WshShell3_AppActivate(IWshShell3
*iface
, VARIANT
*App
, VARIANT
*Wait
, VARIANT_BOOL
*out_Success
)
1612 FIXME("(%s %s %p): stub\n", debugstr_variant(App
), debugstr_variant(Wait
), out_Success
);
1616 static HRESULT WINAPI
WshShell3_SendKeys(IWshShell3
*iface
, BSTR Keys
, VARIANT
*Wait
)
1618 FIXME("(%s %p): stub\n", debugstr_w(Keys
), Wait
);
1622 static HRESULT WINAPI
WshShell3_Exec(IWshShell3
*iface
, BSTR command
, IWshExec
**ret
)
1624 TRACE("(%s %p)\n", debugstr_w(command
), ret
);
1630 return DISP_E_EXCEPTION
;
1632 return WshExec_create(command
, ret
);
1635 static HRESULT WINAPI
WshShell3_get_CurrentDirectory(IWshShell3
*iface
, BSTR
*dir
)
1639 TRACE("(%p)\n", dir
);
1641 ret
= GetCurrentDirectoryW(0, NULL
);
1643 return HRESULT_FROM_WIN32(GetLastError());
1645 *dir
= SysAllocStringLen(NULL
, ret
-1);
1647 return E_OUTOFMEMORY
;
1649 ret
= GetCurrentDirectoryW(ret
, *dir
);
1651 SysFreeString(*dir
);
1653 return HRESULT_FROM_WIN32(GetLastError());
1659 static HRESULT WINAPI
WshShell3_put_CurrentDirectory(IWshShell3
*iface
, BSTR dir
)
1661 TRACE("(%s)\n", debugstr_w(dir
));
1664 return E_INVALIDARG
;
1666 if (!SetCurrentDirectoryW(dir
))
1667 return HRESULT_FROM_WIN32(GetLastError());
1672 static const IWshShell3Vtbl WshShell3Vtbl
= {
1673 WshShell3_QueryInterface
,
1676 WshShell3_GetTypeInfoCount
,
1677 WshShell3_GetTypeInfo
,
1678 WshShell3_GetIDsOfNames
,
1680 WshShell3_get_SpecialFolders
,
1681 WshShell3_get_Environment
,
1684 WshShell3_CreateShortcut
,
1685 WshShell3_ExpandEnvironmentStrings
,
1688 WshShell3_RegDelete
,
1690 WshShell3_AppActivate
,
1693 WshShell3_get_CurrentDirectory
,
1694 WshShell3_put_CurrentDirectory
1697 HRESULT WINAPI
WshShellFactory_CreateInstance(IClassFactory
*iface
, IUnknown
*outer
, REFIID riid
, void **ppv
)
1699 TRACE("(%p %s %p)\n", outer
, debugstr_guid(riid
), ppv
);
1701 WshShell3
.IWshShell3_iface
.lpVtbl
= &WshShell3Vtbl
;
1702 init_classinfo(&IID_IWshShell3
, (IUnknown
*)&WshShell3
.IWshShell3_iface
, &WshShell3
.classinfo
);
1703 return IWshShell3_QueryInterface(&WshShell3
.IWshShell3_iface
, riid
, ppv
);