Commit 125131ae authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msctf/tests: Make EditSession_Constructor() static.

parent 34accb38
......@@ -1479,10 +1479,11 @@ static const ITfEditSessionVtbl EditSession_EditSessionVtbl =
EditSession_DoEditSession
};
HRESULT EditSession_Constructor(ITfEditSession **ppOut)
static HRESULT EditSession_Constructor(ITfEditSession **ppOut)
{
EditSession *This;
*ppOut = NULL;
This = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(EditSession));
if (This == NULL)
return E_OUTOFMEMORY;
......
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