Search found 1 match
- Fri Dec 30, 2016 4:46 am
- Forum: Support and Development
- Topic: File chooser dialogs with FFI
- Replies: 20
- Views: 11890
Re: File chooser dialogs with FFI
Here you go: Windows OpenFile Dialogue - (tested on Windows 7 64bit) ffi = require"ffi" bit = require"bit" collectgarbage("stop") ffi.cdef[[ static const int OFN_FILEMUSTEXIST = 0x1000; static const int OFN_NOCHANGEDIR = 8; static const int OFN_PATHMUSTEXIST = 0x800; t...