libui/test/allcalls.h

26 lines
893 B
C

// 28 may 2019
// This file should NOT have include guards as it is intended to be included more than once; see noinitwrongthread.c for details.
allcallsCase(uiMain, /* no arguments */)
allcallsCase(uiQuit, /* no arguments */)
// uiQueueMain() is defined in all files explicitly since it isn't instantiated for all possible allcalls tests
allcallsCase(uiControlType, /* no arguments */)
allcallsCase(uiRegisterControlType, NULL, NULL, NULL, 0)
allcallsCase(uiCheckControlType, NULL, 0)
allcallsCase(uiNewControl, 0, NULL)
allcallsCase(uiControlFree, NULL)
allcallsCase(uiControlSetParent, NULL, NULL)
allcallsCase(uiControlImplData, NULL)
allcallsCase(uiWindowType, /* no arguments */)
allcallsCase(uiNewWindow, /* no arguments */)
allcallsCase(uiWindowTitle, NULL)
allcallsCase(uiWindowSetTitle, NULL, NULL)
allcallsCase(uiWindowChild, NULL)
allcallsCase(uiWindowSetChild, NULL, NULL)