ReactOS 0.4.15-dev-7918-g2a2556c
httprequest.c File Reference
#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "wininet.h"
#include "winreg.h"
#include "winuser.h"
#include "ole2.h"
#include "mshtml.h"
#include "msxml6.h"
#include "objsafe.h"
#include "docobj.h"
#include "shlwapi.h"
#include "msxml_private.h"
#include "wine/debug.h"
Include dependency graph for httprequest.c:

Go to the source code of this file.

Macros

#define COBJMACROS
 
#define NONAMELESSUNION
 

Functions

HRESULT XMLHTTPRequest_create (void **ppObj)
 
HRESULT ServerXMLHTTP_create (void **obj)
 

Macro Definition Documentation

◆ COBJMACROS

#define COBJMACROS

Definition at line 22 of file httprequest.c.

◆ NONAMELESSUNION

#define NONAMELESSUNION

Definition at line 23 of file httprequest.c.

Function Documentation

◆ ServerXMLHTTP_create()

HRESULT ServerXMLHTTP_create ( void **  obj)

Definition at line 2112 of file httprequest.c.

2113{
2114 MESSAGE("This program tried to use a ServerXMLHTTP object, but\n"
2115 "libxml2 support was not present at compile time.\n");
2116 return E_NOTIMPL;
2117}
#define E_NOTIMPL
Definition: ddrawi.h:99
#define MESSAGE
Definition: options.h:86

◆ XMLHTTPRequest_create()

HRESULT XMLHTTPRequest_create ( void **  ppObj)

Definition at line 2105 of file httprequest.c.

2106{
2107 MESSAGE("This program tried to use a XMLHTTPRequest object, but\n"
2108 "libxml2 support was not present at compile time.\n");
2109 return E_NOTIMPL;
2110}