Changeset 276
- Timestamp:
- Feb 18, 2014, 7:55:02 AM (10 years ago)
- Location:
- trunk/DirectShowSpy
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/DirectShowSpy/AboutDialog.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/Common.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/Configuration.cpp
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #include "stdafx.h" -
trunk/DirectShowSpy/Configuration.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/DirectShowSpy.cpp
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #include "stdafx.h" -
trunk/DirectShowSpy/DirectShowSpy.idl
r268 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 import "oaidl.idl"; -
trunk/DirectShowSpy/DirectShowSpy.rc
r272 r276 60 60 61 61 VS_VERSION_INFO VERSIONINFO 62 FILEVERSION 1, 0, 0, 14 2862 FILEVERSION 1, 0, 0, 1432 63 63 PRODUCTVERSION 1,0,0,1 64 64 FILEFLAGSMASK 0x3fL … … 79 79 VALUE "CompanyName", "Roman Ryltsov" 80 80 VALUE "FileDescription", "Alax.Info DirectShow Spy Module" 81 VALUE "FileVersion", "1, 0, 0, 14 28\0"81 VALUE "FileVersion", "1, 0, 0, 1432\0" 82 82 VALUE "InternalName", "DirectShowSpy.dll" 83 83 VALUE "LegalCopyright", "Copyright © Alax.Info, Roman Ryltsov, 2008-2014" … … 372 372 // 373 373 374 IDR_EMAILTOOLS TYPELIB "..\\..\\Repository-Private\\Utilities\\EmailTools\\_Bin\\Win32\\Release\\EmailTools\\EmailTools.tlb" 374 #if defined(_WIN64) 375 IDR_EMAILTOOLS TYPELIB "..\\..\\Repository-Private\\Utilities\\EmailTools\\_Bin\\EmailTools-x64.tlb" 376 #else 377 IDR_EMAILTOOLS TYPELIB "..\\..\\Repository-Private\\Utilities\\EmailTools\\_Bin\\EmailTools-Win32.tlb" 378 #endif 375 379 376 380 ///////////////////////////////////////////////////////////////////////////// -
trunk/DirectShowSpy/FilterGraphHelper.h
r270 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once … … 2190 2192 CRoArrayT<CString> Array; 2191 2193 Array.Add(I(sMajorType)); 2192 Array.Add(I(sSubtype)); 2194 if(!sSubtype.IsEmpty()) 2195 Array.Add(I(sSubtype)); 2193 2196 #pragma region MEDIATYPE_Video 2194 2197 if(pMediaType->majortype == MEDIATYPE_Video) … … 2198 2201 if(Extent.cx || Extent.cy) 2199 2202 Array.Add(AtlFormatString(_T("%s x %s"), I(Extent.cx), I(Extent.cy))); 2203 if(VideoInfoHeader2.AvgTimePerFrame > 0) 2204 Array.Add(AtlFormatString(_T("%s frames/sec"), I(_StringHelper::FormatNumber(1E7 / VideoInfoHeader2.AvgTimePerFrame, 3)))); 2200 2205 } else 2201 2206 #pragma endregion -
trunk/DirectShowSpy/FilterGraphList.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/FilterGraphSpy.cpp
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #include "stdafx.h" -
trunk/DirectShowSpy/FilterGraphSpy.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/FilterMapperSpy.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/GraphBuilderCallbackPropertySheet.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/Helper.cpp
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #include "stdafx.h" -
trunk/DirectShowSpy/PropertyBag.h
r268 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/SystemDeviceEnumeratorSpy.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/dllmain.cpp
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #include "stdafx.h" -
trunk/DirectShowSpy/dllmain.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/stdafx.cpp
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #include "stdafx.h" -
trunk/DirectShowSpy/stdafx.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once -
trunk/DirectShowSpy/targetver.h
r267 r276 1 1 //////////////////////////////////////////////////////////// 2 2 // Copyright (C) Roman Ryltsov, 2008-2014 3 // Created by Roman Ryltsov roman@alax.info 3 // Created by Roman Ryltsov roman@alax.info, http://alax.info 4 4 // 5 5 // This source code is published to complement DirectShowSpy developer powertoy 6 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 or otherwise8 // (provided that you dont pretend that you wrote the original tool).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 9 // 10 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. The advise applies to hooking methods 12 // used by DirectShowSpy in general as well. 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. 13 15 14 16 #pragma once
Note: See TracChangeset
for help on using the changeset viewer.