|
|
1.1 ! root 1: #ifndef DICTIONARY_H ! 2: #define DICTIONARY_H ! 3: ! 4: #include <windows.h> ! 5: ! 6: #define DATA_POOL_CAPACITY 1000000 ! 7: ! 8: typedef struct ! 9: { ! 10: char *Key; ! 11: int IntKey; ! 12: void *Value; ! 13: } DictionaryEntry; ! 14: ! 15: int AddDictionaryEntry (char *key, int intKey, void *value); ! 16: void *GetDictionaryValue (char *key); ! 17: void *GetDictionaryValueByInt (int intKey); ! 18: void *AddPoolData (void *data, size_t dataSize); ! 19: void ClearDictionaryPool (); ! 20: ! 21: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.