Jacek Caban : mshtml: Added IDM_RESPECTVISIBILITY_INDESIGN command stub implementation.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jun 11 08:46:40 CDT 2007


Module: wine
Branch: master
Commit: 2aa419e809314ac40b7a994aff3bdbff69e2829f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2aa419e809314ac40b7a994aff3bdbff69e2829f

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Sun Jun 10 11:53:29 2007 +0200

mshtml: Added IDM_RESPECTVISIBILITY_INDESIGN command stub implementation.

---

 dlls/mshtml/olecmd.c |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/dlls/mshtml/olecmd.c b/dlls/mshtml/olecmd.c
index 8a0aa61..8f8837d 100644
--- a/dlls/mshtml/olecmd.c
+++ b/dlls/mshtml/olecmd.c
@@ -1,5 +1,5 @@
 /*
- * Copyright 2005-2006 Jacek Caban for CodeWeavers
+ * Copyright 2005-2007 Jacek Caban for CodeWeavers
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -576,6 +576,13 @@ static HRESULT exec_baselinefont3(HTMLDocument *This, DWORD cmdexecopt, VARIANT
     return S_OK;
 }
 
+static HRESULT exec_respectvisibility_indesign(HTMLDocument *This, DWORD cmdexecopt,
+        VARIANT *in, VARIANT *out)
+{
+    FIXME("(%p)->(%08x %p %p)\n", This, cmdexecopt, in, out);
+    return E_NOTIMPL;
+}
+
 static HRESULT query_enabled_stub(HTMLDocument *This, OLECMD *cmd)
 {
     switch(cmd->cmdID) {
@@ -653,6 +660,7 @@ static const cmdtable_t base_cmds[] = {
     {IDM_BASELINEFONT3,    NULL,                  exec_baselinefont3},
     {IDM_BLOCKDIRLTR,      query_enabled_stub,    NULL},
     {IDM_BLOCKDIRRTL,      query_enabled_stub,    NULL},
+    {IDM_RESPECTVISIBILITY_INDESIGN, NULL,        exec_respectvisibility_indesign},
     {0,NULL,NULL}
 };
 




More information about the wine-cvs mailing list