summaryrefslogtreecommitdiff
path: root/print/OEM Printer Customization Plug-in Samples/C++/bitmap/dllentry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'print/OEM Printer Customization Plug-in Samples/C++/bitmap/dllentry.cpp')
-rw-r--r--print/OEM Printer Customization Plug-in Samples/C++/bitmap/dllentry.cpp50
1 files changed, 0 insertions, 50 deletions
diff --git a/print/OEM Printer Customization Plug-in Samples/C++/bitmap/dllentry.cpp b/print/OEM Printer Customization Plug-in Samples/C++/bitmap/dllentry.cpp
deleted file mode 100644
index 4483a741..00000000
--- a/print/OEM Printer Customization Plug-in Samples/C++/bitmap/dllentry.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
-// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
-// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
-// PARTICULAR PURPOSE.
-//
-// Copyright 1998 - 2003 Microsoft Corporation. All Rights Reserved.
-//
-// FILE: dllentry.cpp
-//
-//
-// PURPOSE: Source module for DLL entry function(s).
-//
-
-
-#include "precomp.h"
-#include "bitmap.h"
-#include "debug.h"
-
-// This indicates to Prefast that this is a usermode driver file.
-_Analysis_mode_(_Analysis_code_type_user_driver_);
-
-
-///////////////////////////////////////////////////////////
-//
-// DLL entry point
-//
-
-BOOL WINAPI DllMain(HINSTANCE hInst, WORD wReason, LPVOID lpReserved)
-{
- UNREFERENCED_PARAMETER(hInst);
- UNREFERENCED_PARAMETER(lpReserved);
-
- switch(wReason)
- {
- case DLL_PROCESS_ATTACH:
- break;
-
- case DLL_THREAD_ATTACH:
- break;
-
- case DLL_PROCESS_DETACH:
- break;
-
- case DLL_THREAD_DETACH:
- break;
- }
-
- return TRUE;
-}
-