source: trunk/DirectShowSpy/dllmain.cpp @ 795

Last change on this file since 795 was 376, checked in by roman, 9 years ago

Changed year to 2015; Added Copy and Save As links in graph text, RunTime? property pages

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1////////////////////////////////////////////////////////////
2// Copyright (C) Roman Ryltsov, 2008-2015
3// Created by Roman Ryltsov roman@alax.info, http://alax.info
4//
5// This source code is published to complement DirectShowSpy developer powertoy
6// and demonstrate the internal use of APIs and tricks powering the tool. It is
7// allowed to freely re-use the portions of the code in other projects, commercial
8// or otherwise (provided that you don’t pretend that you wrote the original tool).
9//
10// Please keep in mind that DirectShowSpy is a developer tool, it is strongly recommended
11// that it is not shipped with release grade software. It is allowed to distribute
12// DirectShowSpy if only it is not registered with Windows by default and either
13// used privately, or registered on specific throubleshooting request. The advice applies
14// to hooking methods used by DirectShowSpy in general as well.
15
16#include "stdafx.h"
17#include "resource.h"
18#include "Module_i.h"
19#include "dllmain.h"
20
21////////////////////////////////////////////////////////////
22// Main
23
24CDirectShowSpyModule _AtlModule;
25
26extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD nReason, VOID* pvReserved)
27{
28        hInstance;
29        return _AtlModule.DllMain(nReason, pvReserved); 
30}
Note: See TracBrowser for help on using the repository browser.