RMS SDK for C++  0.2.1
A client library for using Microsoft RMS from Linux.
CacheControl.h
1 /*
2  * ======================================================================
3  * Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
4  * Licensed under the MIT License.
5  * See LICENSE.md in the project root for license information.
6  * ======================================================================
7 */
8 
9 #ifndef _RMS_LIB_CACHECONTROL_H
10 #define _RMS_LIB_CACHECONTROL_H
11 
12 namespace rmscore {
13 namespace modernapi {
14 
18 enum ResponseCacheFlags {
22  RESPONSE_CACHE_NOCACHE = 0x00,
23 
28  RESPONSE_CACHE_INMEMORY= 0x01,
29 
34  RESPONSE_CACHE_ONDISK = 0x02,
35 
39  RESPONSE_CACHE_ENCRYPTED = 0x04,
40 };
41 } // namespace modernapi
42 } // namespace rmscore
43 #endif // _RMS_LIB_CACHECONTROL_H
Definition: AuthenticationCallbackImpl.h:16