Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
1 // Windows/ResourceString.h
3 #ifndef __WINDOWS_RESOURCESTRING_H
4 #define __WINDOWS_RESOURCESTRING_H
6 #include "Common/String.h"
8 namespace NWindows {
10 CSysString MyLoadString(UINT resourceID);
11 #ifdef _UNICODE
12 inline UString MyLoadStringW(UINT resourceID)
13 { return MyLoadString(resourceID); }
14 #else
15 UString MyLoadStringW(UINT resourceID);
16 #endif
18 }
20 #endif