msi: Make TransformView_Create static.

This commit is contained in:
Alex Henrie 2023-06-04 22:19:33 -06:00 committed by Alexandre Julliard
parent daa20d9d63
commit 1da5618cba

View file

@ -2765,7 +2765,7 @@ static const MSIVIEWOPS transform_view_ops =
NULL
};
UINT TransformView_Create( MSIDATABASE *db, string_table *st, LPCWSTR name, MSIVIEW **view )
static UINT TransformView_Create( MSIDATABASE *db, string_table *st, LPCWSTR name, MSIVIEW **view )
{
static const WCHAR query_pfx[] = L"SELECT `Column`, `Data`, `Current` FROM `_TransformView` WHERE `Table`='";
static const WCHAR query_sfx[] = L"' AND `Row` IS NULL AND `Current` IS NOT NULL AND `new` = 1";