root/ossiedev/trunk/system/ossie/framework/ossiecf.cpp @ 8776

Revision 8776, 1.4 KB (checked in by mcarrick, 4 years ago)

removing stdafx.h/cpp, ms visual studio code

  • Property svn:eol-style set to native
Line 
1/****************************************************************************
2
3Copyright 2008, Virginia Polytechnic Institute and State University
4
5This file is part of the OSSIE Core Framework.
6
7OSSIE Core Framework is free software; you can redistribute it and/or modify
8it under the terms of the Lesser GNU General Public License as published by
9the Free Software Foundation; either version 2.1 of the License, or
10(at your option) any later version.
11
12OSSIE Core Framework is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15Lesser GNU General Public License for more details.
16
17You should have received a copy of the Lesser GNU General Public License
18along with OSSIE Core Framework; if not, write to the Free Software
19Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
21****************************************************************************/
22
23// ossiecf.cpp : Defines the entry point for the DLL application.
24//
25
26#include "ossie/ossiecf.h"
27
28BOOL APIENTRY
29DllMain (HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
30{
31    switch (ul_reason_for_call)
32    {
33        case DLL_PROCESS_ATTACH:
34        case DLL_THREAD_ATTACH:
35        case DLL_THREAD_DETACH:
36        case DLL_PROCESS_DETACH:
37            break;
38    }
39    return TRUE;
40}
Note: See TracBrowser for help on using the browser.