プログラムを実行すると、次のようなメッセージが出ます。
何が原因でしょうか?
『This application has requested the Runtime to to terminate
it in an unusual way. Please contact the application's support
team for more information』
まず、何のOS バージョン で
どんなソフトの実行のとき出るんでしょうか
・Visual STUDIO
・VC コンパイル
・メイク
・自作アプリ
基本的にコンピュータ上で動作するものは、総称して「プログラム」と呼ばれます
なお、この英文の意味を教えることは出来ても
(翻訳ページで翻訳すれば~・・・)
原因は誰も教えられません、あまりにも情報不足です・・・・無理(><)
十中八九 VC の abort() の結果出力されるメッセージですが、
abort の原因が何であるかはこのメッセージからでは分かりません。
そのプログラムが何か、異常終了の原因となる不正処理をしたのでしょう。
'_RT_ABORT' を検索中...
$(VSInstallDir)\Vc7\crt\src\abort.c(44): _NMSG_WRITE(_RT_ABORT); /*
write the abort message */
$(VSInstallDir)\Vc7\crt\src\cmsgs.h(45):#define _RT_ABORT_TXT "
EOL This application has requested the Runtime to terminate it in an unusual
way.\nPlease contact the application's support team for more information. EOL
$(VSInstallDir)\Vc7\crt\src\crt0msg.c(45): { _RT_ABORT, _RT_ABORT_TXT },
$(VSInstallDir)\Vc7\crt\src\rterr.h(42):#define _RT_ABORT
10 /* Abnormal program termination */
ということで、Ban さんの指摘どおりでしょうね。
ちなみに、VC6.0 だったら abort関数のメッセージは次のようになるでしょう。
(VC7 系とは異なるメッセージ)
#define _RT_ABORT_TXT " EOL abnormal program termination EOL