/*Title:      mjbWorld
Copyright (c) 1998-2002 Martin John Baker

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

For information about the GNU General Public License see http://www.gnu.org/

If you would like to contact me, my e-mail is martinb@martinb.com and my
website is http://www.martinb.com/
*/

#include "stdafx.h"
#include "resource.h"
#include "mjbogl.h"

class CmjboglModule : public CAtlDllModuleT< CmjboglModule >
{
public :
	DECLARE_LIBID(LIBID_mjboglLib)
	DECLARE_REGISTRY_APPID_RESOURCEID(IDR_MJBOGL, "{45A42906-2F38-4860-81D8-F01F4E9420FA}")
};

CmjboglModule _AtlModule;


// 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;
}
