/reactos/dll/win32/shell32/ |
H A D | CFolderItemVerbs.cpp | 44 TRACE("(%p, %p)\n", this, ppid); in get_Application() 46 if (ppid) in get_Application() 47 *ppid = NULL; in get_Application() 56 if (ppid) in get_Parent() 57 *ppid = NULL; in get_Parent() 121 if (ppid) in get_Application() 122 *ppid = NULL; in get_Application() 131 if (ppid) in get_Parent() 132 *ppid = NULL; in get_Parent() 139 if (!ppid) in Item() [all …]
|
H A D | CFolderItems.cpp | 31 TRACE("(%p, %p)\n", this, ppid); in get_Application() 37 TRACE("(%p, %p)\n", this, ppid); in get_Parent() 38 if (ppid) in get_Parent() 40 *ppid = m_Folder; in get_Parent() 41 (*ppid)->AddRef(); in get_Parent() 90 TRACE("(%p, %p)\n", this, ppid); in get_GetLink() 96 TRACE("(%p, %p)\n", this, ppid); in get_GetFolder() 236 TRACE("(%p, %p)\n", this, ppid); in get_Application() 242 TRACE("(%p, %p)\n", this, ppid); in get_Parent() 244 if (ppid) in get_Parent() [all …]
|
H A D | CFolder.cpp | 55 TRACE("(%p, %p)\n", this, ppid); in get_Application() 57 if (!ppid) in get_Application() 60 *ppid = m_Application; in get_Application() 61 (*ppid)->AddRef(); in get_Application() 66 HRESULT STDMETHODCALLTYPE CFolder::get_Parent(IDispatch **ppid) in get_Parent() argument 68 TRACE("(%p %p)\n", this, ppid); in get_Parent() 70 if (ppid) in get_Parent() 71 *ppid = NULL; in get_Parent() 85 HRESULT STDMETHODCALLTYPE CFolder::Items(FolderItems **ppid) in Items() argument 94 if (!ppid) in ParseName() [all …]
|
H A D | CFolderItems.h | 28 STDMETHOD(get_Application)(IDispatch **ppid) override; 29 STDMETHOD(get_Parent)(IDispatch **ppid) override; 33 STDMETHOD(get_GetLink)(IDispatch **ppid) override; 34 STDMETHOD(get_GetFolder)(IDispatch **ppid) override; 76 STDMETHOD(get_Application)(IDispatch **ppid) override; 77 STDMETHOD(get_Parent)(IDispatch **ppid) override; 78 STDMETHOD(Item)(VARIANT index, FolderItem **ppid) override;
|
H A D | CFolderItemVerbs.h | 40 STDMETHOD(get_Application)(IDispatch **ppid) override; 41 STDMETHOD(get_Parent)(IDispatch **ppid) override; 74 STDMETHOD(get_Application)(IDispatch **ppid) override; 75 STDMETHOD(get_Parent)(IDispatch **ppid) override; 76 STDMETHOD(Item)(VARIANT index, FolderItemVerb **ppid) override;
|
H A D | CFolder.h | 31 STDMETHOD(get_Application)(IDispatch **ppid) override; 32 STDMETHOD(get_Parent)(IDispatch **ppid) override; 34 STDMETHOD(Items)(FolderItems **ppid) override; 35 STDMETHOD(ParseName)(BSTR bName, FolderItem **ppid) override;
|
H A D | CShellDispatch.cpp | 38 HRESULT STDMETHODCALLTYPE CShellDispatch::get_Application(IDispatch **ppid) in get_Application() argument 40 TRACE("(%p, %p)\n", this, ppid); in get_Application() 42 if (!ppid) in get_Application() 45 *ppid = this; in get_Application() 51 HRESULT STDMETHODCALLTYPE CShellDispatch::get_Parent(IDispatch **ppid) in get_Parent() argument 53 TRACE("(%p, %p)\n", this, ppid); in get_Parent() 55 if (ppid) in get_Parent() 57 *ppid = static_cast<IDispatch*>(this); in get_Parent() 129 HRESULT STDMETHODCALLTYPE CShellDispatch::Windows(IDispatch **ppid) in Windows() argument 131 TRACE("(%p, %p)\n", this, ppid); in Windows() [all …]
|
H A D | CShellDispatch.h | 29 STDMETHOD(get_Application)(IDispatch **ppid) override; 30 STDMETHOD(get_Parent)(IDispatch **ppid) override; 33 STDMETHOD(Windows)(IDispatch **ppid) override;
|
/reactos/sdk/include/psdk/ |
H A D | shldisp.idl | 185 HRESULT Parent( [out, retval] IDispatch **ppid ); 190 HRESULT Items( [out, retval] FolderItems **ppid ); 267 HRESULT Parent( [out, retval] IDispatch **ppid ); 279 HRESULT GetLink( [out, retval] IDispatch **ppid ); 352 HRESULT Parent( [out, retval] IDispatch **ppid ); 355 [out, retval] FolderItem **ppid ); 406 HRESULT Parent( [out, retval] IDispatch **ppid ); 432 HRESULT Parent( [out, retval] IDispatch **ppid ); 435 [out, retval] FolderItemVerb **ppid ); 457 HRESULT Parent( [out, retval] IDispatch **ppid ); [all …]
|
H A D | exdisp.idl | 829 [id(24)] HRESULT SelectedItems([out, retval] IDispatch **ppid); 917 [out, retval] ISearch **ppid); 940 [id(7), propget] HRESULT Searches([out, retval] ISearches **ppid);
|
/reactos/modules/rostests/winetests/kernel32/ |
H A D | debugger.c | 544 DWORD ppid; in doChild() local 549 sscanf(argv[3], "%08x", &ppid); in doChild() 551 parent = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, ppid); in doChild() 558 ret = DebugActiveProcess(ppid); in doChild() 565 ret = pDebugActiveProcessStop(ppid); in doChild()
|