Module: wine Branch: master Commit: 890a5e3e1947fdd173070b5eca9c1a3e0d7ddda8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=890a5e3e1947fdd173070b5eca...
Author: Jacek Caban jacek@codeweavers.com Date: Tue Aug 31 13:22:35 2010 +0200
mshtml: Use LONGLONG/ULONGLONG for PRInt64/PRUint64.
---
dlls/mshtml/nsiface.idl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/nsiface.idl b/dlls/mshtml/nsiface.idl index a344899..d4ab0b7 100644 --- a/dlls/mshtml/nsiface.idl +++ b/dlls/mshtml/nsiface.idl @@ -49,8 +49,8 @@ typedef WORD PRUint16; typedef INT16 PRInt16; typedef BYTE PRUint8; typedef BOOL PRBool; -typedef LARGE_INTEGER PRInt64; -typedef ULARGE_INTEGER PRUint64; +typedef LONGLONG PRInt64; +typedef ULONGLONG PRUint64; typedef PRUint64 DOMTimeStamp; typedef PRUint32 nsLoadFlags;