Data Fields | |
void * | context |
wmfSPutS | sputs |
wmfReset | reset |
wmf_stream_create() and wmf_ztream_create() both return pointers to wmfStream objects, but an application can create its own implementation if preferred.
typedef int (*wmfSPutS) (char* str,void* context); typedef int (*wmfReset) (void* context);
wmfSPutS: writes string str
; returns EOF on error, else 0.
wmfReset: resets stream to start; returns non-zero on failure.
context
is a handle for user data
|
|
|
|
|
|