mshtml: Get rid of PRInt16 type.

This commit is contained in:
Jacek Caban 2013-01-18 14:06:09 +01:00 committed by Alexandre Julliard
parent cf2a24df07
commit f071d9b3c1
2 changed files with 4 additions and 5 deletions

View File

@ -45,7 +45,6 @@ typedef nsIIDRef nsCIDRef;
typedef WCHAR PRUnichar;
typedef ULONG PRUint32;
typedef WORD PRUint16;
typedef INT16 PRInt16;
typedef BYTE PRUint8;
typedef LONGLONG PRInt64;
typedef ULONGLONG PRUint64;
@ -55,7 +54,7 @@ typedef ULONGLONG PRUint64;
* more similar to original declarations. Note that it's only a widl trick, we can't
* use stdint.h types in C.
*/
#define int16_t PRInt16
#define int16_t short
#define int32_t LONG
#define int64_t PRInt64

View File

@ -1236,7 +1236,7 @@ static HRESULT WINAPI HTMLTxtRange_inRange(IHTMLTxtRange *iface, IHTMLTxtRange *
{
HTMLTxtRange *This = impl_from_IHTMLTxtRange(iface);
HTMLTxtRange *src_range;
PRInt16 nsret = 0;
short nsret = 0;
nsresult nsres;
TRACE("(%p)->(%p %p)\n", This, Range, InRange);
@ -1267,7 +1267,7 @@ static HRESULT WINAPI HTMLTxtRange_isEqual(IHTMLTxtRange *iface, IHTMLTxtRange *
{
HTMLTxtRange *This = impl_from_IHTMLTxtRange(iface);
HTMLTxtRange *src_range;
PRInt16 nsret = 0;
short nsret = 0;
nsresult nsres;
TRACE("(%p)->(%p %p)\n", This, Range, IsEqual);
@ -1599,7 +1599,7 @@ static HRESULT WINAPI HTMLTxtRange_compareEndPoints(IHTMLTxtRange *iface, BSTR h
{
HTMLTxtRange *This = impl_from_IHTMLTxtRange(iface);
HTMLTxtRange *src_range;
PRInt16 nsret = 0;
short nsret = 0;
int nscmpt;
nsresult nsres;