1998-08-12 21:04:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "xp_mcom.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "xp_linebuf.h"
|
|
|
|
#include "mkbuf.h"
|
|
|
|
|
1998-08-12 21:13:52 +00:00
|
|
|
extern "C" XP_Bool ValidateDocData(MWContext *window_id)
|
|
|
|
{
|
|
|
|
printf("ValidateDocData not implemented, stubbed in webshell/tests/viewer/nsStubs.cpp\n");
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
1998-08-12 21:04:30 +00:00
|
|
|
|
|
|
|
/* dist/public/xp/xp_linebuf.h */
|
|
|
|
int XP_ReBuffer (const char *net_buffer, int32 net_buffer_size,
|
|
|
|
uint32 desired_buffer_size,
|
|
|
|
char **bufferP, uint32 *buffer_sizeP,
|
|
|
|
uint32 *buffer_fpP,
|
|
|
|
int32 (*per_buffer_fn) (char *buffer,
|
|
|
|
uint32 buffer_size,
|
|
|
|
void *closure),
|
1998-08-12 21:13:52 +00:00
|
|
|
void *closure)
|
|
|
|
{
|
|
|
|
|
|
|
|
printf("XP_ReBuffer not implemented, stubbed in webshell/tests/viewer/nsStubs.cpp\n");
|
|
|
|
return(0);
|
|
|
|
}
|
1998-08-12 21:04:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* mozilla/include/xp_trace.h */
|
|
|
|
|
1998-08-12 21:13:52 +00:00
|
|
|
extern "C" void XP_Trace( const char *, ... )
|
|
|
|
{
|
|
|
|
printf("XP_Trace not implemented, stubbed in webshell/tests/viewer/nsStubs.cpp\n");
|
|
|
|
|
|
|
|
|
|
|
|
}
|
1998-08-12 21:04:30 +00:00
|
|
|
|
|
|
|
|