reactos/rosapps/lib/dflat32/stubs.c
Steven Edwards 63e2886299 Making dflat32 a dll. Its a little broken ATM.
svn path=/trunk/; revision=2789
2002-03-28 12:15:40 +00:00

48 lines
750 B
C

#include <dflat32/dflat.h>
DFWINDOW ApplicationWindow; //applicat.c
void ClearDialogBoxes(void) // no clue
{
}
// from normal.c
/* -------- array of class definitions -------- */
CLASSDEFS classdefs[] = {
#undef ClassDef
#define ClassDef(c,b,p,a) {b,p,a},
// #include <dflat32/classes.h>
};
BOOL isAncestor(DFWINDOW wnd, DFWINDOW awnd)
{
while (wnd != NULL) {
if (wnd == awnd)
return TRUE;
wnd = GetParent(wnd);
}
return FALSE;
}
BOOL isVisible(DFWINDOW wnd)
{
while (wnd != NULL) {
if (isHidden(wnd))
return FALSE;
wnd = GetParent(wnd);
}
return TRUE;
}
void BuildTextPointers(DFWINDOW wnd)
{
}
// log.c
void LogMessages (DFWINDOW wnd, DFMESSAGE msg, PARAM p1, PARAM p2)
{
}