-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
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
Crash on Add New Source File in IDE in Windows for Workgroups 3.11 #1267
Comments
Thank you for your bug report. |
I confirm this crash - actually, it's a GPF in the IDE, file vfilelst.cpp, function AddSrcDlgProc(). Register DS contains a selector of Win16 dll COMMDLG, which almost certainly is wrong - since it is a so-called callback, register DS "should" be set on function entry, which obviously isn't done. Comparing ide.exe with OW v1.9, OW20's ide has just 11 exports, while OW19's has 15 - and the export for AddSrcDlgProc() is one of those that are missing. |
@Baron-von-Riedesel thanks for your analysis. It is missing export modifier on callback function for 16-bit widows. |
missing export modifier for 16-bit Windows AddSrcDlgProc callback funstion.
missing export modifier for 16-bit Windows AddSrcDlgProc callback funstion.
The IDE crashes when I create a new source file in my installation of Open Watcom in 86Box. When I create a project, set target environment to Win16 and image type as Executable, it creates the project. Then, when clicking Sources -> New Source and entering "main.c" and clicking Add or pressing the Enter key, the IDE crashes.
https://pasteboard.co/hog7EMkxgSPB.png
The text was updated successfully, but these errors were encountered: