|
|
1.1.1.2 root 1: /*
1.1.1.8 root 2: Copyright (c) 2005-2009 TrueCrypt Developers Association. All rights reserved.
1.1.1.2 root 3:
1.1.1.9 ! root 4: Governed by the TrueCrypt License 3.0 the full text of which is contained in
1.1.1.8 root 5: the file License.txt included in TrueCrypt binary and source code distribution
6: packages.
1.1.1.2 root 7: */
8:
1.1 root 9: #ifndef DICTIONARY_H
10: #define DICTIONARY_H
11:
12: #include <windows.h>
13:
1.1.1.3 root 14: #ifdef __cplusplus
15: extern "C" {
16: #endif
17:
1.1 root 18: #define DATA_POOL_CAPACITY 1000000
19:
1.1.1.7 root 20: void AddDictionaryEntry (char *key, int intKey, void *value);
1.1.1.5 root 21: void *GetDictionaryValue (const char *key);
1.1 root 22: void *GetDictionaryValueByInt (int intKey);
23: void *AddPoolData (void *data, size_t dataSize);
24: void ClearDictionaryPool ();
25:
1.1.1.3 root 26: #ifdef __cplusplus
27: }
28: #endif
29:
1.1 root 30: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.