We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在OnMenuFileExit()函数中使用了exit(0);来退出程序,导致了内存泄漏 或许可以使用PostQuitMessage(0);代替exit来退出。 当我使用PostQuitMessage(0);时,它没有出现内存泄漏的问题。
OnMenuFileExit()
PostQuitMessage(0);
exit
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在
OnMenuFileExit()
函数中使用了exit(0);来退出程序,导致了内存泄漏或许可以使用
PostQuitMessage(0);
代替exit
来退出。当我使用
PostQuitMessage(0);
时,它没有出现内存泄漏的问题。The text was updated successfully, but these errors were encountered: