~ubuntu-branches/ubuntu/quantal/nspr/quantal-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): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

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