├── CMakeLists.txt ├── License.txt ├── Readme.md ├── examples ├── CMakeLists.txt ├── dialogs │ ├── dialog.rc │ ├── dlg_modal.cpp │ ├── dlg_modeless.cpp │ └── resource.h ├── mdi.cpp ├── multithreading │ ├── Multithreading.cpp │ ├── mtdialog.rc │ └── resource.h └── sdi.cpp ├── include └── winapi.h └── src ├── application.cpp ├── combobox_getlbtext.cpp ├── comboboxex_getitemtext.cpp ├── default_mdichild_class.cpp ├── default_window_class.cpp ├── dialog.cpp ├── dialog_enddialog.cpp ├── dialog_go1.cpp ├── dialog_go2.cpp ├── edit_getline.cpp ├── listbox_gettext.cpp ├── listview_getitemtext.cpp ├── mdichild.cpp ├── mdichild_defaultproc.cpp ├── mdiwindow.cpp ├── menu_getstring.cpp ├── modelessdialog_create1.cpp ├── modelessdialog_create2.cpp ├── modelessdialog_create3.cpp ├── passlparam.h ├── regkey_deletekeytree.cpp ├── regkey_enum.cpp ├── regkey_enumkeys.cpp ├── regkey_enumkeys2.cpp ├── regkey_queryvalue.cpp ├── socket.cpp ├── statusbar_gettext.cpp ├── statusbar_gettiptext.cpp ├── tabcontrol_getitemtext.cpp ├── thread.cpp ├── toolbar_getbuttontext.cpp ├── treeitem_getitemtext.cpp ├── window.cpp ├── window_class.cpp ├── window_defaultproc.cpp ├── window_gettext.cpp ├── windowclass_constructor.cpp └── winmain.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/License.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/Readme.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/dialogs/dialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/dialogs/dialog.rc -------------------------------------------------------------------------------- /examples/dialogs/dlg_modal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/dialogs/dlg_modal.cpp -------------------------------------------------------------------------------- /examples/dialogs/dlg_modeless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/dialogs/dlg_modeless.cpp -------------------------------------------------------------------------------- /examples/dialogs/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/dialogs/resource.h -------------------------------------------------------------------------------- /examples/mdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/mdi.cpp -------------------------------------------------------------------------------- /examples/multithreading/Multithreading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/multithreading/Multithreading.cpp -------------------------------------------------------------------------------- /examples/multithreading/mtdialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/multithreading/mtdialog.rc -------------------------------------------------------------------------------- /examples/multithreading/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/multithreading/resource.h -------------------------------------------------------------------------------- /examples/sdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/examples/sdi.cpp -------------------------------------------------------------------------------- /include/winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/include/winapi.h -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/combobox_getlbtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/combobox_getlbtext.cpp -------------------------------------------------------------------------------- /src/comboboxex_getitemtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/comboboxex_getitemtext.cpp -------------------------------------------------------------------------------- /src/default_mdichild_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/default_mdichild_class.cpp -------------------------------------------------------------------------------- /src/default_window_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/default_window_class.cpp -------------------------------------------------------------------------------- /src/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/dialog.cpp -------------------------------------------------------------------------------- /src/dialog_enddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/dialog_enddialog.cpp -------------------------------------------------------------------------------- /src/dialog_go1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/dialog_go1.cpp -------------------------------------------------------------------------------- /src/dialog_go2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/dialog_go2.cpp -------------------------------------------------------------------------------- /src/edit_getline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/edit_getline.cpp -------------------------------------------------------------------------------- /src/listbox_gettext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/listbox_gettext.cpp -------------------------------------------------------------------------------- /src/listview_getitemtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/listview_getitemtext.cpp -------------------------------------------------------------------------------- /src/mdichild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/mdichild.cpp -------------------------------------------------------------------------------- /src/mdichild_defaultproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/mdichild_defaultproc.cpp -------------------------------------------------------------------------------- /src/mdiwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/mdiwindow.cpp -------------------------------------------------------------------------------- /src/menu_getstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/menu_getstring.cpp -------------------------------------------------------------------------------- /src/modelessdialog_create1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/modelessdialog_create1.cpp -------------------------------------------------------------------------------- /src/modelessdialog_create2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/modelessdialog_create2.cpp -------------------------------------------------------------------------------- /src/modelessdialog_create3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/modelessdialog_create3.cpp -------------------------------------------------------------------------------- /src/passlparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/passlparam.h -------------------------------------------------------------------------------- /src/regkey_deletekeytree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/regkey_deletekeytree.cpp -------------------------------------------------------------------------------- /src/regkey_enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/regkey_enum.cpp -------------------------------------------------------------------------------- /src/regkey_enumkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/regkey_enumkeys.cpp -------------------------------------------------------------------------------- /src/regkey_enumkeys2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/regkey_enumkeys2.cpp -------------------------------------------------------------------------------- /src/regkey_queryvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/regkey_queryvalue.cpp -------------------------------------------------------------------------------- /src/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/socket.cpp -------------------------------------------------------------------------------- /src/statusbar_gettext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/statusbar_gettext.cpp -------------------------------------------------------------------------------- /src/statusbar_gettiptext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/statusbar_gettiptext.cpp -------------------------------------------------------------------------------- /src/tabcontrol_getitemtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/tabcontrol_getitemtext.cpp -------------------------------------------------------------------------------- /src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/thread.cpp -------------------------------------------------------------------------------- /src/toolbar_getbuttontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/toolbar_getbuttontext.cpp -------------------------------------------------------------------------------- /src/treeitem_getitemtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/treeitem_getitemtext.cpp -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/window.cpp -------------------------------------------------------------------------------- /src/window_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/window_class.cpp -------------------------------------------------------------------------------- /src/window_defaultproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/window_defaultproc.cpp -------------------------------------------------------------------------------- /src/window_gettext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/window_gettext.cpp -------------------------------------------------------------------------------- /src/windowclass_constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/windowclass_constructor.cpp -------------------------------------------------------------------------------- /src/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graham--M/winapi-wrapper/HEAD/src/winmain.cpp --------------------------------------------------------------------------------