(trunk libT) put ful's theory to the test wrt function pointers

This commit is contained in:
Charles Kerr
2009-01-19 18:11:47 +00:00
parent 1d08afa717
commit daaa450f8e
2 changed files with 13 additions and 13 deletions

View File

@@ -19,10 +19,10 @@
struct tr_benc;
typedef void( tr_rpc_response_func )( tr_session * session,
const char * response,
size_t response_len,
void * user_data );
typedef void( *tr_rpc_response_func )( tr_session * session,
const char * response,
size_t response_len,
void * user_data );
/* http://www.json.org/ */
void tr_rpc_request_exec_json( tr_session * session,
const void * request_json,