Commit 872035f1 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

ole32: Make stub_manager_int_addref() static.

parent 887c395c
......@@ -203,7 +203,6 @@ HRESULT FTMarshalCF_Create(REFIID riid, LPVOID *ppv);
/* Stub Manager */
ULONG stub_manager_int_addref(struct stub_manager *This);
ULONG stub_manager_int_release(struct stub_manager *This);
struct stub_manager *new_stub_manager(APARTMENT *apt, IUnknown *object);
ULONG stub_manager_ext_addref(struct stub_manager *m, ULONG refs, BOOL tableweak);
......
......@@ -251,7 +251,7 @@ static void stub_manager_delete(struct stub_manager *m)
}
/* increments the internal refcount */
ULONG stub_manager_int_addref(struct stub_manager *This)
static ULONG stub_manager_int_addref(struct stub_manager *This)
{
ULONG refs;
......
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