speech
All Data Structures Functions Modules Pages
stdafx.h
1 // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
2 // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
3 // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
4 // PARTICULAR PURPOSE.
5 //
6 // Copyright � Microsoft Corporation. All rights reserved
7 
8 // stdafx.h : include file for standard system include files,
9 // or project specific include files that are used frequently, but
10 // are changed infrequently
11 //
12 
13 #if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
14 #define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_
15 
16 #if _MSC_VER > 1000
17 #pragma once
18 #endif // _MSC_VER > 1000
19 
20 // Disable the false warnings caused by the wrong definitions of SetWindowLongPtr
21 // and GetWindowLongPtr macros.
22 #pragma warning ( disable : 4244 )
23 
24 #ifndef WIN32_LEAN_AND_MEAN
25 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
26 #endif // WIN32_LEAN_AND_MEAN
27 
28 
29 // Windows Header Files:
30 #include <windows.h>
31 
32 // C RunTime Header Files
33 #include <stdlib.h>
34 #include <malloc.h>
35 #include <memory.h>
36 #include <tchar.h>
37 #include <atlbase.h>
38 
39 #ifdef _WIN32_WCE
40 #include<WinCEStub.h>
41 #define ICON_BIG 1
42 #endif
43 
44 
45 // Local Header Files
46 #include <sapi.h>
47 #include <sphelper.h>
48 #include <sperror.h>
49 #include <atlstr.h>
50 #include <atlconv.h>
51 
52 //STD
53 #include <map>
54 #include <list>
55 #include <vector>
56 #include <string>
57 #include <iostream>
58 #include <fstream>
59 #include <sstream>
60 
61 //YARP
62 #include <yarp/os/all.h>
63 #include <yarp/sig/Sound.h>
64 #include <yarp/sig/SoundFile.h>
65 
66 //{{AFX_INSERT_LOCATION}}
67 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
68 
69 #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)