ole32: Only warn about storage share mode once.

This commit is contained in:
Vincent Povirk 2010-02-11 16:49:21 -06:00 committed by Alexandre Julliard
parent 6cea48b928
commit 35b800dc92
1 changed files with 4 additions and 0 deletions

View File

@ -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;