| OLD | NEW |
| 1 #ifndef REGISTRY_H | 1 #ifndef REGISTRY_H |
| 2 #define REGISTRY_H | 2 #define REGISTRY_H |
| 3 | 3 |
| 4 #include <string> | 4 #include <string> |
| 5 #include <Windows.h> | 5 #include <Windows.h> |
| 6 | 6 |
| 7 namespace AdblockPlus | 7 namespace AdblockPlus |
| 8 { | 8 { |
| 9 /** | 9 /** |
| 10 * An open key in the system registry. | 10 * An open key in the system registry. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 * Retrieve a value from a name-value pair within the present key. | 53 * Retrieve a value from a name-value pair within the present key. |
| 54 * | 54 * |
| 55 * Throws if the name is not found within the dictionary. | 55 * Throws if the name is not found within the dictionary. |
| 56 * Throws if the name is found but is not a string. | 56 * Throws if the name is found but is not a string. |
| 57 */ | 57 */ |
| 58 std::wstring value_wstring(const std::wstring& name) const; | 58 std::wstring value_wstring(const std::wstring& name) const; |
| 59 }; | 59 }; |
| 60 } | 60 } |
| 61 | 61 |
| 62 #endif | 62 #endif |
| OLD | NEW |