From dc66ded799a33da3f290beff292c7a128964ea77 Mon Sep 17 00:00:00 2001 From: "waterson%netscape.com" Date: Tue, 6 Apr 1999 06:36:50 +0000 Subject: [PATCH] Regenerated using long-long instead of PRTime. git-svn-id: svn://10.0.0.236/trunk@26460 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/rdf/base/public/nsRDFInterfaces.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/mozilla/rdf/base/public/nsRDFInterfaces.h b/mozilla/rdf/base/public/nsRDFInterfaces.h index 72887ecd135..eb0fb86ee14 100644 --- a/mozilla/rdf/base/public/nsRDFInterfaces.h +++ b/mozilla/rdf/base/public/nsRDFInterfaces.h @@ -15,7 +15,6 @@ #include "jsapi.h" #endif #include "nscore.h" // for PRUnichar -#include "prtime.h" // for PRTime /* starting interface: nsIRDFNode */ @@ -117,8 +116,8 @@ class nsIRDFDate : public nsIRDFNode { return iid; } - /* readonly attribute time Value; */ - NS_IMETHOD GetValue(PRTime *aValue) = 0; + /* readonly attribute long long Value; */ + NS_IMETHOD GetValue(PRInt64 *aValue) = 0; /* boolean EqualsDate (in nsIRDFDate aDate); */ NS_IMETHOD EqualsDate(nsIRDFDate *aDate, PRBool *_retval) = 0; @@ -451,8 +450,8 @@ class nsIRDFService : public nsISupports { /* nsIRDFLiteral GetLiteral (in wstring aValue); */ NS_IMETHOD GetLiteral(const PRUnichar *aValue, nsIRDFLiteral **_retval) = 0; - /* nsIRDFDate GetDateLiteral (in time aValue); */ - NS_IMETHOD GetDateLiteral(PRTime aValue, nsIRDFDate **_retval) = 0; + /* nsIRDFDate GetDateLiteral (in long long aValue); */ + NS_IMETHOD GetDateLiteral(PRInt64 aValue, nsIRDFDate **_retval) = 0; /* nsIRDFInt GetIntLiteral (in long aValue); */ NS_IMETHOD GetIntLiteral(PRInt32 aValue, nsIRDFInt **_retval) = 0;