mshtml: Get rid of PRUint64 type.

This commit is contained in:
Jacek Caban 2013-01-23 18:44:56 +01:00 committed by Alexandre Julliard
parent 07e72de9a4
commit 7867ce8560
2 changed files with 3 additions and 4 deletions

View File

@ -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;

View File

@ -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;