/alps/fastwriter

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/fastwriter

« back to all changes in this revision

Viewing changes to fastwriter.h

  • Committer: Suren A. Chilingaryan
  • Date: 2011-12-13 14:45:59 UTC
  • Revision ID: csa@dside.dyndns.org-20111213144559-uswgybgiqrg865t7
Just push instead push_chunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
int fastwriter_open(fastwriter_t *ctx, const char *name, fastwriter_flags_t flags);
36
36
int fastwriter_close(fastwriter_t *ctx);
37
37
 
38
 
int fastwriter_push_chunk(fastwriter_t *ctx, size_t size, const void *buf);
 
38
int fastwriter_push(fastwriter_t *ctx, size_t size, const void *buf);
39
39
int fastwriter_commit(fastwriter_t *ctx);
40
40
int fastwriter_cancel(fastwriter_t *ctx);
41
41