msctf/tests: Make EditSession_Constructor() static.

This commit is contained in:
Francois Gouget 2009-06-15 10:53:20 +02:00 committed by Alexandre Julliard
parent 34accb382b
commit 125131aea4
1 changed files with 2 additions and 1 deletions

View File

@ -1479,10 +1479,11 @@ static const ITfEditSessionVtbl EditSession_EditSessionVtbl =
EditSession_DoEditSession EditSession_DoEditSession
}; };
HRESULT EditSession_Constructor(ITfEditSession **ppOut) static HRESULT EditSession_Constructor(ITfEditSession **ppOut)
{ {
EditSession *This; EditSession *This;
*ppOut = NULL;
This = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(EditSession)); This = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(EditSession));
if (This == NULL) if (This == NULL)
return E_OUTOFMEMORY; return E_OUTOFMEMORY;