Module: wine Branch: master Commit: fe5ea9f006ada0a79ba2fad2cb82d476ea3393d1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fe5ea9f006ada0a79ba2fad2cb...
Author: Jacek Caban jacek@codeweavers.com Date: Tue Mar 11 13:01:00 2008 +0100
include: Added activaut.idl.
---
.gitignore | 1 + dlls/uuid/uuid.c | 1 + include/Makefile.in | 1 + include/activaut.idl | 29 +++++++++++++++++++++++++++++ 4 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore index 483b391..1abc9e7 100644 --- a/.gitignore +++ b/.gitignore @@ -590,6 +590,7 @@ dlls/ws2_32/version.res dlls/wsock32/libwsock32.def dlls/wsock32/version.res dlls/wtsapi32/libwtsapi32.def +include/activaut.h include/activscp.h include/amstream.h include/amvideo.h diff --git a/dlls/uuid/uuid.c b/dlls/uuid/uuid.c index 3fc97ee..c53238f 100644 --- a/dlls/uuid/uuid.c +++ b/dlls/uuid/uuid.c @@ -50,6 +50,7 @@ DEFINE_GUID(GUID_NULL,0,0,0,0,0,0,0,0,0,0,0); #include "shldisp.h" #include "comcat.h" #include "urlmon.h" +#include "activaut.h" #include "activscp.h" #include "dispex.h" #include "mlang.h" diff --git a/include/Makefile.in b/include/Makefile.in index 287cfa9..f81b4c4 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -5,6 +5,7 @@ VPATH = @srcdir@ MODULE = none
IDL_H_SRCS = \ + activaut.idl \ activscp.idl \ amstream.idl \ amvideo.idl \ diff --git a/include/activaut.idl b/include/activaut.idl new file mode 100644 index 0000000..890e785 --- /dev/null +++ b/include/activaut.idl @@ -0,0 +1,29 @@ +/* + * Copyright 2008 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 + * 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 + */ + +#ifndef DO_NO_IMPORTS +import "ocidl.idl"; +import "oleidl.idl"; +import "oaidl.idl"; +#endif + +cpp_quote("#ifndef _NO_AUTHOR_GUIDS") + +cpp_quote("DEFINE_GUID(CATID_ActiveScriptAuthor, 0xaee2a92,0xbcbb,0x11d0,0x8c,0x72,0x0,0xc0,0x4f,0xc2,0xb0,0x85);") + +cpp_quote("#endif")