VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/win/dllmain.cpp@ 35381

Last change on this file since 35381 was 35368, checked in by vboxsync, 14 years ago

Main: source re-org.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1/** @file
2 *
3 * DLLMAIN - COM DLL exports
4 *
5 */
6
7/*
8 * Copyright (C) 2006-2007 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#include "VBox/com/defs.h"
20
21#include <SessionImpl.h>
22#include <VirtualBoxClientImpl.h>
23
24#include <atlbase.h>
25#include <atlcom.h>
26
27#include <iprt/initterm.h>
28
29CComModule _Module;
30
31BEGIN_OBJECT_MAP(ObjectMap)
32 OBJECT_ENTRY(CLSID_Session, Session)
33 OBJECT_ENTRY(CLSID_VirtualBoxClient, VirtualBoxClient)
34END_OBJECT_MAP()
35
36/////////////////////////////////////////////////////////////////////////////
37// DLL Entry Point
38
39extern "C"
40BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /*lpReserved*/)
41{
42 if (dwReason == DLL_PROCESS_ATTACH)
43 {
44 _Module.Init(ObjectMap, hInstance, &LIBID_VirtualBox);
45 DisableThreadLibraryCalls(hInstance);
46
47 // idempotent, so doesn't harm, and needed for COM embedding scenario
48 RTR3Init();
49 }
50 else if (dwReason == DLL_PROCESS_DETACH)
51 {
52 _Module.Term();
53 }
54 return TRUE;
55}
56
57/////////////////////////////////////////////////////////////////////////////
58// Used to determine whether the DLL can be unloaded by OLE
59
60STDAPI DllCanUnloadNow(void)
61{
62 return (_Module.GetLockCount()==0) ? S_OK : S_FALSE;
63}
64
65/////////////////////////////////////////////////////////////////////////////
66// Returns a class factory to create an object of the requested type
67
68STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
69{
70 return _Module.GetClassObject(rclsid, riid, ppv);
71}
72
73/////////////////////////////////////////////////////////////////////////////
74// DllRegisterServer - Adds entries to the system registry
75
76STDAPI DllRegisterServer(void)
77{
78 // registers object, typelib and all interfaces in typelib
79 return _Module.RegisterServer(TRUE);
80}
81
82/////////////////////////////////////////////////////////////////////////////
83// DllUnregisterServer - Removes entries from the system registry
84
85STDAPI DllUnregisterServer(void)
86{
87 return _Module.UnregisterServer(TRUE);
88}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette