2025-11-27 16:46:48 +09:00

24 lines
763 B
C

// Version: 9.3
// Inclide the resource declarations
#include "OXMainRes.h"
#ifdef _DEBUG
#ifdef _UNICODE
#pragma message("Automatically linking with UTDU.lib - please make sure this file is built.")
#pragma comment(lib, "UTDU.lib")
#else // not unicode
#pragma message("Automatically linking with UTD.lib - please make sure this file is built.")
#pragma comment(lib, "UTD.lib")
#endif // _UNICODE
#else // RELEASE
#ifdef _UNICODE
#pragma message("Automatically linking with UTU.lib - please make sure this file is built.")
#pragma comment(lib, "UTU.lib")
#else // not unicode
#pragma message("Automatically linking with UT.lib - please make sure this file is built.")
#pragma comment(lib, "UT.lib")
#endif // _UNICODE
#endif // _DEBUG