This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this program opens an old win 3.1 file-open dialog. | |
// | |
// it works if OFN_EXPLORER is missing AND a hook is used. | |
// | |
// compile with msys2/mingw: | |
// gcc fileopen.c -lcomdlg32 -o fileopen | |
#include<windows.h> | |
#include<commdlg.h> | |
#include<stdio.h> |