forked from weirdhome

Fork of HTTPClient by David Smart

Revision:
32:7b9919d59194
Parent:
16:1f743885e7de
--- a/IHTTPData.h	Sat Jul 26 19:47:36 2014 +0000
+++ b/IHTTPData.h	Sat Oct 11 17:26:04 2014 +0000
@@ -36,14 +36,15 @@
   virtual void readReset() = 0;
 
   /** Read a piece of data to be transmitted
-   * @param buf Pointer to the buffer on which to copy the data
-   * @param len Length of the buffer
-   * @param pReadLen Pointer to the variable on which the actual copied data length will be stored
+   * @param[out] buf Pointer to the buffer on which to copy the data
+   * @param[in] len Length of the buffer
+   * @param[out] pReadLen Pointer to the variable on which the actual copied data length will be stored
    */
   virtual int read(char* buf, size_t len, size_t* pReadLen) = 0;
   
   /** Get MIME type
-   * @param type Internet media type from Content-Type header
+   * @param[out] type Internet media type from Content-Type header
+   * @param[in] maxTypeLen is the size of the type buffer to write to
    */
   virtual int getDataType(char* type, size_t maxTypeLen) = 0; //Internet media type for Content-Type header