23 lines
412 B
C
23 lines
412 B
C
|
// 12 january 2020
|
||
|
|
||
|
/*
|
||
|
This file assumes that you have included TODO_insert_appropriate_Haiku_headers and "ui.h" beforehand. It provides API-specific functions for interfacing with foreign controls in Windows.
|
||
|
*/
|
||
|
|
||
|
#ifndef uiprivIncludeGuard_ui_haiku_h
|
||
|
#define uiprivIncludeGuard_ui_haiku_h
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
struct uiControlOSVtable {
|
||
|
size_t Size;
|
||
|
};
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|