mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
48 lines
750 B
C
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)
|
||
|
{
|
||
|
}
|