Last change
on this file since 276 was
276,
checked in by roman, 10 years ago
|
Updated header (on use, applicability, redistribution)
|
-
Property svn:keywords set to
Id
|
File size:
1.3 KB
|
Line | |
---|
1 | //////////////////////////////////////////////////////////// |
---|
2 | // Copyright (C) Roman Ryltsov, 2008-2014 |
---|
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 dont 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 "DirectShowSpy_i.h" |
---|
19 | #include "dllmain.h" |
---|
20 | |
---|
21 | //////////////////////////////////////////////////////////// |
---|
22 | // Main |
---|
23 | |
---|
24 | CDirectShowSpyModule _AtlModule; |
---|
25 | |
---|
26 | extern "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.