File: fliteDll.cpp

package info (click to toggle)
flite 1.4-release-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 81,668 kB
  • sloc: ansic: 636,980; sh: 3,685; lisp: 2,496; makefile: 891; cpp: 804; xml: 52
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