| 431 | } |
| 432 | |
| 433 | static inline void init_unicode_string( UNICODE_STRING *str, const WCHAR *data ) |
| 434 | { |
| 435 | str->Length = wcslen( data ) * sizeof(WCHAR); |
| 436 | str->MaximumLength = str->Length + sizeof(WCHAR); |
| 437 | str->Buffer = (WCHAR *)data; |
| 438 | } |
| 439 | |
| 440 | static NTSTATUS open_hkcu_key( const char *path, HANDLE *key ) |
| 441 | { |
no outgoing calls
no test coverage detected