2016-04-23 15:47:44 -05:00
|
|
|
// 21 april 2016
|
2015-05-14 08:43:25 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
This file assumes that you have included <windows.h> and "ui.h" beforehand. It provides API-specific functions for interfacing with foreign controls in Windows.
|
|
|
|
*/
|
|
|
|
|
2019-04-08 19:55:06 -05:00
|
|
|
#ifndef uiprivIncludeGuard_ui_windows_h
|
|
|
|
#define uiprivIncludeGuard_ui_windows_h
|
2015-08-28 20:42:21 -05:00
|
|
|
|
2015-11-16 09:55:44 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-06-18 19:31:28 -05:00
|
|
|
struct uiControlOSVtable {
|
|
|
|
size_t Size;
|
|
|
|
};
|
|
|
|
|
2015-11-16 09:55:44 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-05-14 08:43:25 -05:00
|
|
|
#endif
|