reg: Add case for REG_MULTI_SZ.

Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hugh McMaster 2016-02-15 23:15:34 +11:00 committed by Alexandre Julliard
parent b14e1ba801
commit 07c6b1392f
1 changed files with 2 additions and 0 deletions

View File

@ -282,6 +282,8 @@ static LPBYTE get_regdata(LPWSTR data, DWORD reg_type, WCHAR separator, DWORD *r
out_data = NULL;
break;
}
case REG_MULTI_SZ:
/* FIXME: Needs handling */
default:
output_message(STRING_UNHANDLED_TYPE, reg_type, data);
}