Searched refs:cmdid (Results 1 – 5 of 5) sorted by relevance
/reactos/dll/win32/mshtml/ |
H A D | olecmd.c | 880 static HRESULT exec_from_table(HTMLDocument *This, const cmdtable_t *cmdtable, DWORD cmdid, in exec_from_table() argument 885 while(iter->id && iter->id != cmdid) in exec_from_table() 939 DWORD cmdid; in show_context_menu() local 948 cmdid = TrackPopupMenu(menu, TPM_LEFTALIGN | TPM_RIGHTBUTTON | TPM_RETURNCMD, in show_context_menu() 952 if(cmdid) in show_context_menu() 953 IOleCommandTarget_Exec(&This->basedoc.IOleCommandTarget_iface, &CGID_MSHTML, cmdid, 0, in show_context_menu()
|
H A D | htmldoc.c | 1155 static BOOL cmdid_from_string(const WCHAR *str, OLECMDID *cmdid) in cmdid_from_string() argument 1161 *cmdid = command_names[i].id; in cmdid_from_string() 1222 OLECMDID cmdid; in HTMLDocument_execCommand() local 1228 if(!cmdid_from_string(cmdID, &cmdid)) in HTMLDocument_execCommand() 1232 hres = IOleCommandTarget_Exec(&This->IOleCommandTarget_iface, &CGID_MSHTML, cmdid, in HTMLDocument_execCommand()
|
/reactos/dll/win32/hhctrl.ocx/ |
H A D | webbrowser.c | 164 DWORD cmdid, menu_id = 0; in UI_ShowContextMenu() local 179 cmdid = TrackPopupMenu(submenu, TPM_LEFTALIGN | TPM_RIGHTBUTTON | TPM_RETURNCMD, in UI_ShowContextMenu() 183 switch(cmdid) { in UI_ShowContextMenu()
|
/reactos/modules/rostests/winetests/mshtml/ |
H A D | htmldoc.c | 6388 #define test_QueryStatus(u,cgid,cmdid,cmdf) _test_QueryStatus(__LINE__,u,cgid,cmdid,cmdf) argument 6389 static void _test_QueryStatus(unsigned line, IUnknown *unk, REFIID cgid, ULONG cmdid, DWORD cmdf) in _test_QueryStatus() argument 6392 OLECMD olecmd = {cmdid, 0}; in _test_QueryStatus() 6401 … ok(hres == cmdf ? S_OK : OLECMDERR_E_NOTSUPPORTED, "QueryStatus(%u) failed: %08x\n", cmdid, hres); in _test_QueryStatus() 6405 ok_(__FILE__,line) (olecmd.cmdID == cmdid, "cmdID changed\n"); in _test_QueryStatus() 6406 …ok_(__FILE__,line) (olecmd.cmdf == cmdf, "(%u) cmdf=%08x, expected %08x\n", cmdid, olecmd.cmdf, cm… in _test_QueryStatus() 6660 static void test_exec_noargs(IUnknown *unk, DWORD cmdid) in test_exec_noargs() argument 6670 hres = IOleCommandTarget_Exec(cmdtrg, &CGID_MSHTML, cmdid, in test_exec_noargs()
|
H A D | dom.c | 8897 static void test_exec(IUnknown *unk, const GUID *grpid, DWORD cmdid, VARIANT *in, VARIANT *out) in test_exec() argument 8905 hres = IOleCommandTarget_Exec(cmdtrg, grpid, cmdid, 0, in, out); in test_exec()
|