1
Programming / Re: DOSBox-x - infinite loop in configure/make
« on: April 19, 2025, 03:20:42 pm »
Hi Jochen
I'm not a "c" programmer but looking through pm2.inf (from os/2 toolkit) it looks like you can set the initial directory in the FILEDLG structure:-
char pszFullFile[CCHMAXPATH] = "*.C"; /* File filter string */
I would change the above to the following to see if it works
char pszFullFile[CCHMAXPATH] = "Drive:\Path\*.*"; /*Set to required Drive:\Path */
eg:
char pszFullFile[CCHMAXPATH] = "C:\Programs\*.*";
Regards
Pete
I'm not a "c" programmer but looking through pm2.inf (from os/2 toolkit) it looks like you can set the initial directory in the FILEDLG structure:-
char pszFullFile[CCHMAXPATH] = "*.C"; /* File filter string */
I would change the above to the following to see if it works
char pszFullFile[CCHMAXPATH] = "Drive:\Path\*.*"; /*Set to required Drive:\Path */
eg:
char pszFullFile[CCHMAXPATH] = "C:\Programs\*.*";
Regards
Pete