Note:
'Entered name' columns specify name typed (not selected) 'Filter' columns specify the user selected filter 'Exists' column values specifies:
no- file does not exist with or without filter extensionyes- file exists exactly as entered (where 'file' and 'file.' both match 'file' but not 'file.ext')filter- file exists with filter extension appended but not without
This file contains hidden or 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
| #include <wx/app.h> | |
| #include <wx/artprov.h> | |
| #include <wx/custombgwin.h> | |
| #include <wx/dcclient.h> | |
| #include <wx/frame.h> | |
| #include <wx/sizer.h> | |
| #include <wx/textctrl.h> | |
| #include <wx/msw/private.h> |
This file contains hidden or 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
| // Compile with | |
| // | |
| // $ cc -Wall -shared -fPIC -o libxcb_debug.so xcb_debug.c `pkg-config --cflags --libs xcb` | |
| // | |
| // Use with | |
| // | |
| // $ LD_PRELOAD=libxcb_debug.so any_program_using_xcb | |
| #define _GNU_SOURCE | |
| #include <dlfcn.h> | |
| #include <errno.h> |
OlderNewer