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