topical media & game development
lib-ch-example-ref-wcgi-flush.cgi / cgi
#!/bin/ch
/* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */
include <wcgi.h>
int main() {
class CResponse Response;
Response.setBuffer(true);
Response.begin();
Response.title(L"Test of Response.flush");
printf("<H1> Test of Response.flush </H1>
\n");
printf("Output before flush<br>\n");
Response.flush();
Response.end();
}
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.