#include "stdafx.h" #include "TdkIupPresentationUtils.h" int _tmain(int argc, _TCHAR* argv[]) { try { TdkIupPresentationUtils::initIup(); TdkIupPresentationUtils::showMessageBox("World","Hello"); TdkIupPresentationUtils::closeIup(); } catch ( TdkException& ex ) { fprintf(stderr, ex.trace() ); exit(1); } return 0; }