source: trunk/Utilities/JsFunctionDispatch/dllmain.cpp @ 405

Last change on this file since 405 was 405, checked in by roman, 8 years ago
File size: 475 bytes
Line 
1////////////////////////////////////////////////////////////
2// Copyright (C) Roman Ryltsov, 2008-2015
3// Created by Roman Ryltsov roman@alax.info
4
5#include "stdafx.h"
6#include "resource.h"
7#include "JsFunctionDispatch_i.h"
8#include "dllmain.h"
9
10CJsFunctionDispatchModule _AtlModule;
11
12// DLL Entry Point
13extern "C" BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
14{
15        hInstance;
16        return _AtlModule.DllMain(dwReason, lpReserved); 
17}
Note: See TracBrowser for help on using the repository browser.