12 lines
192 B
C
12 lines
192 B
C
|
// 18 january 2020
|
||
|
#include "test_haiku.h"
|
||
|
|
||
|
static const uiControlOSVtable vtable = {
|
||
|
.Size = sizeof (uiControlOSVtable),
|
||
|
};
|
||
|
|
||
|
const uiControlOSVtable *testOSVtable(void)
|
||
|
{
|
||
|
return &vtable;
|
||
|
}
|