media/libnestegg/include/nestegg-stdint.h

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 #ifdef _WIN32
     2 typedef __int64 int64_t;
     3 typedef unsigned __int64 uint64_t;
     4 #if !defined(INT64_MAX)
     5 #define INT64_MAX 9223372036854775807LL
     6 #endif
     7 #else
     8 #include <stdint.h>
     9 #endif

mercurial