Commit 1da5618c authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

msi: Make TransformView_Create static.

parent daa20d9d
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment