Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenuuid.c
Go to the documentation of this file.
00001 /* 00002 * MSXML2 uuids 00003 * 00004 * Copyright 2006 Huw Davies 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2.1 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with this library; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00019 */ 00020 00021 /* 00022 * We can't use the autogenerated _i.c file from msxml2.idl as that 00023 * will contain some of the (version 2) uuids defined in libuuid. 00024 * Therefore we roll our own. 00025 */ 00026 00027 #include <stdarg.h> 00028 00029 #include "windef.h" 00030 #include "winbase.h" 00031 #include "winuser.h" 00032 #include "ole2.h" 00033 00034 /* 00035 * First include the version 2 headers so that we don't redefine their 00036 * uuids - they're already in libuuid 00037 */ 00038 #include "xmldom.h" 00039 #include "xmldso.h" 00040 #include "msxml.h" 00041 00042 /* Now we can initialize the rest of the uuids */ 00043 #include "initguid.h" 00044 #include "msxml2.h" 00045 00046 /* 00047 * Note that because of a #define in msxml2.h, we end up initializing 00048 * CLSID_DOMDocument2 to be the v.3 version independent DOMDocument 00049 * class {f6d90f11-9c73-11d3-b32e-00c04f990bb4}. The other version 00050 * independent CLSIDs all have slightly different names: 00051 * 00052 * v.2.x v.3.0 00053 * 00054 * DOMFreeThreadedDocument FreeThreadedDOMDocument 00055 * XMLHTTPRequest XMLHTTP 00056 * XMLDSOControl DSOControl 00057 * 00058 */ Generated on Sat May 26 2012 04:23:57 for ReactOS by
1.7.6.1
|