~ubuntu-branches/ubuntu/jaunty/nspr/jaunty-security

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/src/md/windows/ntio.c

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-05-18 12:29:43 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20100518122943-y1nr2oy8jrw1fg04
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    FILE_GENERIC_EXECUTE
101
101
};
102
102
 
103
 
/*
104
 
 * The NSPR epoch (00:00:00 1 Jan 1970 UTC) in FILETIME.
105
 
 * We store the value in a PRTime variable for convenience.
106
 
 * This constant is used by _PR_FileTimeToPRTime().
107
 
 */
108
 
#ifdef __GNUC__
109
 
static const PRTime _pr_filetime_offset = 116444736000000000LL;
110
 
#else
111
 
static const PRTime _pr_filetime_offset = 116444736000000000i64;
112
 
#endif
113
 
 
114
103
static PRBool IsPrevCharSlash(const char *str, const char *current);
115
104
 
116
105
#define _NEED_351_FILE_LOCKING_HACK