FEMM/belasolv/StdAfx.h

9 lines
220 B
C++

// stdafx.h: portable shim pulling in compat/afx.h for BOOL, CString, and stdlib basics.
#pragma once
#define _CRT_SECURE_NO_WARNINGS
#include <afx.h>
int MsgBox(const char* sz, ...);
int MsgBox(const std::string& s);