BusBoy  2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CExternalDataFileSinkAPI.h
Go to the documentation of this file.
1 
17 #ifndef __BUSBOY_C_EXTERNAL_DATA_FILE_SINK_API_H__
18 #define __BUSBOY_C_EXTERNAL_DATA_FILE_SINK_API_H__
19 
20 #include <stddef.h>
21 
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
35 typedef bool (*BusboyDataSinkWritePtr)(
36  char* buf,
37  size_t num
38 );
39 
43 typedef void (*BusboyCloseDataSinkPtr)();
44 
45 
49 };
50 
52 
53 CExternalDataFileSinkPtr CExternalDataFileSink_newDataFileSink(
54  const CExternalDataSinkCallbacks& dataSinkCallbacks
55 );
56 
57 #ifdef __cplusplus
58 }
59 #endif
60 
61 #endif
62 

Copyright 2014 Google Inc. All rights reserved.