所以我一直在研究一个创建报告数据库的程序。我一直在研究这个问题,因为我遇到了大量与SFML相关的问题(因为我不得不学习这个库。)当我突然遇到一个新问题时,我终于设法克服了库限制。当我启动程序时,我受到命令控制台的欢迎。没什么大不了的,这是正常的。然后窗口迎接我说,它突然停止工作。在运行调试器之后,这就是它破坏的地方:
#ifdef WPRFLAG
__winitenv = envp;
mainret = wmain(argc, argv, envp);
#else /* WPRFLAG */
__initenv = envp;
mainret = main(argc, argv, envp); // <-- This is where it's breaking
#endif /* WPRFLAG */
#endif /* _WINMAIN_ */
/*
* Note that if the exe is managed app, we don't really need to
* call exit or _c_exit. .cctor should be able to take care of
* this.
*/
我不明白为什么要打破它,或者如何解决它。请帮忙,我一直在研究几个小时无济于事。