// Spring.cpp : Implementation of DLL Exports.


#include "stdafx.h"
#include "resource.h"
#include <initguid.h>
#include "Spring.h"

#include "Spring_i.c"
#include "SpringCtl.h"


class CatlSpringModule : public CAtlDllModuleT< CatlSpringModule >
{
public :
    DECLARE_LIBID(LIBID_SPRINGLib)
    DECLARE_REGISTRY_APPID_RESOURCEID(IDR_SPRING, "{FEB4F8A5-0105-48bd-AC06-2F94F5020EF5}")
};

CatlSpringModule _AtlModule;

OBJECT_ENTRY_AUTO(CLSID_SpringCtl, CSpringCtl)
// OBJECT_ENTRY_AUTO(CLSID_SpringProp, CSpringProp)

/////////////////////////////////////////////////////////////////////////////
// DLL Entry Point
extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
{
    hInstance;
    return _AtlModule.DllMain(dwReason, lpReserved); 
}


// Used to determine whether the DLL can be unloaded by OLE
STDAPI DllCanUnloadNow(void)
{
    return _AtlModule.DllCanUnloadNow();
}


// Returns a class factory to create an object of the requested type
STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
{
    return _AtlModule.DllGetClassObject(rclsid, riid, ppv);
}


// DllRegisterServer - Adds entries to the system registry
STDAPI DllRegisterServer(void)
{
    // registers object, typelib and all interfaces in typelib
    HRESULT hr = _AtlModule.DllRegisterServer();
    return hr;
}


// DllUnregisterServer - Removes entries from the system registry
STDAPI DllUnregisterServer(void)
{
    HRESULT hr = _AtlModule.DllUnregisterServer();
    return hr;
}