Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
599 B

/*++
Copyright (c) 1997 Microsoft Corporation
Module Name :
cofact.cxx
Abstract:
class factory
Author:
Johnson Apacible (JohnsonA) 02-April-1997
--*/
#include "precomp.hxx"
CComModule _Module;
STDAPI
DllGetClassObject(
REFCLSID rclsid,
REFIID riid,
void** ppObject)
{
HRESULT hr;
hr = _Module.GetClassObject(rclsid, riid, ppObject);
return hr;
}
STDAPI
DllCanUnloadNow(
VOID
)
{
return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
} // DllCanUnloadNow