File: fliteDll.cpp

package info (click to toggle)
flite 2.0.0-release-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 82,752 kB
  • ctags: 148,108
  • sloc: ansic: 690,052; sh: 4,555; lisp: 2,883; makefile: 799; xml: 52; perl: 33; cpp: 28
file content (22 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// fliteDll.cpp : Defines the entry point for the DLL application.
//

#include "stdafx.h"


#ifdef _MANAGED
#pragma managed(push, off)
#endif

BOOL APIENTRY DllMain( HMODULE hModule,
                       DWORD  ul_reason_for_call,
                       LPVOID lpReserved
					 )
{
    return TRUE;
}

#ifdef _MANAGED
#pragma managed(pop)
#endif