svn path=/trunk/; revision=7934
This commit is contained in:
Matthias Clasen 2009-03-01 17:12:58 +00:00
parent bd02a9f778
commit 74882fb655
2 changed files with 38 additions and 16 deletions

View File

@ -1,3 +1,7 @@
2009-03-01 Matthias Clasen <mclasen@redhat.com>
* gdatainputstream.c: Fix docs
2009-02-27 Matthias Clasen <mclasen@redhat.com>
Bug 573421 Clarify message format in GMountOperation

View File

@ -866,7 +866,7 @@ scan_for_chars (GDataInputStream *stream,
* Returns: a string with the data that was read before encountering
* any of the stop characters. Set @length to a #gsize to get the length
* of the string. This function will return %NULL on an error.
**/
*/
char *
g_data_input_stream_read_until (GDataInputStream *stream,
const gchar *stop_chars,
@ -1131,6 +1131,10 @@ g_data_input_stream_read_finish (GDataInputStream *stream,
* The asynchronous version of g_data_input_stream_read_line(). It is
* an error to have two outstanding calls to this function.
*
* When the operation is finished, @callback will be called. You
* can then call g_data_input_stream_read_line_finish() to get
* the result of the operation.
*
* Since: 2.20
*/
void
@ -1161,6 +1165,10 @@ g_data_input_stream_read_line_async (GDataInputStream *stream,
* The asynchronous version of g_data_input_stream_read_until().
* It is an error to have two outstanding calls to this function.
*
* When the operation is finished, @callback will be called. You
* can then call g_data_input_stream_read_until_finish() to get
* the result of the operation.
*
* Since: 2.20
*/
void
@ -1190,6 +1198,11 @@ g_data_input_stream_read_until_async (GDataInputStream *stream,
* Finish an asynchronous call started by
* g_data_input_stream_read_line_async().
*
* Returns: a string with the line that was read in (without the newlines).
* Set @length to a #gsize to get the length of the read line.
* On an error, it will return %NULL and @error will be set. If there's no
* content to read, it will still return %NULL, but @error won't be set.
*
* Since: 2,20
*/
gchar *
@ -1216,6 +1229,10 @@ g_data_input_stream_read_line_finish (GDataInputStream *stream,
* g_data_input_stream_read_until_async().
*
* Since: 2.20
*
* Returns: a string with the data that was read before encountering
* any of the stop characters. Set @length to a #gsize to get the length
* of the string. This function will return %NULL on an error.
*/
gchar *
g_data_input_stream_read_until_finish (GDataInputStream *stream,
@ -1230,5 +1247,6 @@ g_data_input_stream_read_until_finish (GDataInputStream *stream,
return g_data_input_stream_read_finish (stream, result, length, error);
}
#define __G_DATA_INPUT_STREAM_C__
#include "gioaliasdef.c"