Commit 35b800dc authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

ole32: Only warn about storage share mode once.

parent 6cea48b9
......@@ -6353,7 +6353,11 @@ HRESULT WINAPI StgCreateDocfile(
fileAttributes = FILE_ATTRIBUTE_NORMAL | FILE_FLAG_RANDOM_ACCESS;
if (STGM_SHARE_MODE(grfMode) && !(grfMode & STGM_SHARE_DENY_NONE))
{
static int fixme;
if (!fixme++)
FIXME("Storage share mode not implemented.\n");
}
*ppstgOpen = 0;
......
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