YaDICs  V04.14.a
Yet another Digital Image Correlation software: platform dedicated to 2/3D Fluid and Solid kinematics field measurements.
 All Classes Files Functions Variables Pages
stdafx.h
1 // stdafx.h : include file for standard system include files,
2 // or project specific include files that are used frequently, but
3 // are changed infrequently
4 //
5 
6 #pragma once
7 
8 #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
9 #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
10 #endif
11 
12 
13 #include <stdio.h>
14 
15 #ifdef WIN32
16 // win32 only
17 #include <tchar.h>
18 #include <windows.h>
19 #include <conio.h>
20 #include <process.h>
21 #else
22 // linux
23 #define _tmain(a,b) main(a,b)
24 #define _TCHAR char
25 #define _getch()
26 #endif
27 
28 
29 
30 // TODO: reference additional headers your program requires here