VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/VBoxHook/dllmain.cpp@ 30601

Last change on this file since 30601 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 1.2 KB
Line 
1/** @file
2 *
3 * VBoxHook -- Global windows hook dll
4 *
5 * Copyright (C) 2006-2007 Oracle Corporation
6 *
7 * This file is part of VirtualBox Open Source Edition (OSE), as
8 * available from http://www.virtualbox.org. This file is free software;
9 * you can redistribute it and/or modify it under the terms of the GNU
10 * General Public License (GPL) as published by the Free Software
11 * Foundation, in version 2 as it comes in the "COPYING" file of the
12 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14 */
15#include <windows.h>
16
17
18/**
19 * Dll entrypoint
20 *
21 * @returns type size or 0 if unknown type
22 * @param hDLLInst Dll instance handle
23 * @param fdwReason Callback reason
24 * @param lpvReserved Reserved
25 */
26BOOL WINAPI DllMain(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved)
27{
28 BOOL bStatus = TRUE;
29
30 switch (fdwReason)
31 {
32 case DLL_PROCESS_ATTACH:
33 return TRUE;
34
35 case DLL_PROCESS_DETACH:
36 return TRUE;
37
38 case DLL_THREAD_ATTACH:
39 break;
40
41 case DLL_THREAD_DETACH:
42 return TRUE;
43
44 default:
45 break;
46 }
47
48 return bStatus;
49}
50
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