Module: wine Branch: master Commit: fe7ae95852181ee95654ee84b1acbd31db66cbe3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fe7ae95852181ee95654ee84b1...
Author: John Klehm xixsimplicityxix@gmail.com Date: Tue Jul 31 00:53:43 2007 -0500
inkobj: Add stub header for inkobj dll.
---
.gitignore | 1 + include/Makefile.in | 1 + include/msinkaut.idl | 29 +++++++++++++++++++++++++++++ 3 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore index 0ddaa04..2fdb222 100644 --- a/.gitignore +++ b/.gitignore @@ -727,6 +727,7 @@ include/mlang.h include/mmstream.h include/mshtmhst.h include/mshtml.h +include/msinkaut.h include/msxml.h include/msxml2.h include/netfw.h diff --git a/include/Makefile.in b/include/Makefile.in index 9fb456a..0810f81 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -30,6 +30,7 @@ IDL_H_SRCS = \ mmstream.idl \ mshtmhst.idl \ mshtml.idl \ + msinkaut.idl \ msxml.idl \ msxml2.idl \ netfw.idl \ diff --git a/include/msinkaut.idl b/include/msinkaut.idl new file mode 100644 index 0000000..f0eac27 --- /dev/null +++ b/include/msinkaut.idl @@ -0,0 +1,29 @@ +/* Copyright (C) 2007 C John Klehm + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +import "ocidl.idl"; + +[ + uuid(7D868ACD-1A5D-4A47-A247-F39741353012), + version(1.0) +] +library MSINKAUTLib +{ + importlib("stdole2.tlb"); + + typedef float single; +};