source: trunk/DirectShowSpy/dllmain.cpp @ 95

Last change on this file since 95 was 95, checked in by roman, 12 years ago

DirectShowSpy? moved from Assembla

  • Property svn:keywords set to Id
File size: 529 bytes
Line 
1////////////////////////////////////////////////////////////
2// Copyright (C) Roman Ryltsov, 2008-2011
3// Created by Roman Ryltsov roman@alax.info
4//
5// $Id: dllmain.cpp 95 2012-08-17 17:21:13Z roman $
6
7#include "stdafx.h"
8#include "resource.h"
9#include "DirectShowSpy_i.h"
10#include "dllmain.h"
11
12////////////////////////////////////////////////////////////
13// Main
14
15CDirectShowSpyModule _AtlModule;
16
17extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD nReason, VOID* pvReserved)
18{
19        hInstance;
20        return _AtlModule.DllMain(nReason, pvReserved); 
21}
Note: See TracBrowser for help on using the repository browser.