#include "Base/Types.h"
#ifdef DAEDALUS_DEBUG_DISPLAYLIST
#include "SysPosix/Debug/WebDebugTemplate.h"
#include "SysPosix/Debug/WebDebug.h"
void WriteStandardHeader(WebDebugConnection * connection, const char * title)
{
connection->WriteString(
"\n"
"\n"
"
\n"
" \n"
" \n"
);
connection->WriteF(" %s\n", title);
connection->WriteString(" \n");
}
void WriteStandardFooter(WebDebugConnection * connection, const char * user_script)
{
connection->WriteString(
"\n"
"\n"
);
// If there's a user script, append it after the other scripts.
if (user_script)
connection->WriteF("\n", user_script);
connection->WriteString(
"\n"
"\n"
);
}
#endif