js/public/Date.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 #ifndef js_Date_h
     7 #define js_Date_h
     9 #include "jstypes.h"
    11 namespace JS {
    13 // Year is a year, month is 0-11, day is 1-based.  The return value is
    14 // a number of milliseconds since the epoch.  Can return NaN.
    15 JS_PUBLIC_API(double)
    16 MakeDate(double year, unsigned month, unsigned day);
    18 // Takes an integer number of milliseconds since the epoch and returns the
    19 // year.  Can return NaN, and will do so if NaN is passed in.
    20 JS_PUBLIC_API(double)
    21 YearFromTime(double time);
    23 // Takes an integer number of milliseconds since the epoch and returns the
    24 // month (0-11).  Can return NaN, and will do so if NaN is passed in.
    25 JS_PUBLIC_API(double)
    26 MonthFromTime(double time);
    28 // Takes an integer number of milliseconds since the epoch and returns the
    29 // day (1-based).  Can return NaN, and will do so if NaN is passed in.
    30 JS_PUBLIC_API(double)
    31 DayFromTime(double time);
    33 } // namespace JS
    35 #endif /* js_Date_h */

mercurial