1 // stdafx.h: Describes standard system include files, or 2 // project-specific include files that are frequently referenced and not changed often. 3 // 4 // 5 #ifndef NN_LIBRARIES_RDT_CTR_STDAFX_H_ 6 #define NN_LIBRARIES_RDT_CTR_STDAFX_H_ 7 #ifdef _WIN32 8 9 #pragma once 10 11 //#include "targetver.h" 12 13 #include <stdio.h> 14 #include <tchar.h> 15 #include <winsock2.h> 16 #include <windows.h> 17 #include <process.h> 18 #include <cstring> 19 #include "types.h" 20 #include <nn/Result.h> 21 22 #else 23 24 #include <nn.h> 25 #include <nn/types.h> 26 #include <nn/Result.h> 27 #include <nn/uds.h> 28 29 #endif 30 31 // TODO: Reference additional headers required by the program here. 32 #endif // NN_LIBRARIES_RDT_CTR_STDAFX_H_ 33