Commit 7867ce85 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Get rid of PRUint64 type.

parent 07e72de9
......@@ -138,7 +138,7 @@ static nsresult NSAPI nsInputStream_Close(nsIInputStream *iface)
return NS_ERROR_NOT_IMPLEMENTED;
}
static nsresult NSAPI nsInputStream_Available(nsIInputStream *iface, PRUint64 *_retval)
static nsresult NSAPI nsInputStream_Available(nsIInputStream *iface, UINT64 *_retval)
{
nsProtocolStream *This = impl_from_nsIInputStream(iface);
FIXME("(%p)->(%p)\n", This, _retval);
......@@ -1001,7 +1001,7 @@ HRESULT bind_mon_to_wstr(HTMLInnerWindow *window, IMoniker *mon, WCHAR **ret)
static HRESULT read_post_data_stream(nsChannelBSC *This, nsChannel *nschannel)
{
PRUint64 available = 0;
UINT64 available = 0;
UINT32 data_len = 0;
char *data, *post_data;
nsresult nsres;
......
......@@ -43,7 +43,6 @@ typedef REFIID nsIIDRef;
typedef nsIIDRef nsCIDRef;
typedef WCHAR PRUnichar;
typedef ULONGLONG PRUint64;
/*
* Mozilla uses stdint.h types for its headers. Following defines make this IDL file
......@@ -57,7 +56,7 @@ typedef ULONGLONG PRUint64;
#define uint8_t UINT8
#define uint16_t UINT16
#define uint32_t UINT32
#define uint64_t PRUint64
#define uint64_t UINT64
typedef uint64_t DOMTimeStamp;
typedef uint32_t nsLoadFlags;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment