Navigation



Ignore:
Timestamp:
Dec 6, 2010, 2:45:49 PM (13 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Removed the OUTPUT specification for SWIG, too complex

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/freeDiameter/freeDiameter.h

    r618 r620  
    327327 * !0   : An error occurred.
    328328 */
    329 int fd_peer_getbyid( char * diamid, struct peer_hdr ** S_OUT(peer) );
     329int fd_peer_getbyid( char * diamid, struct peer_hdr ** peer );
    330330
    331331/*
     
    550550 *  ENOMEM      : Not enough memory to complete the operation
    551551 */
    552 int fd_rt_fwd_register ( int (*rt_fwd_cb)(void * cbdata, struct msg ** msg), void * cbdata, enum fd_rt_fwd_dir dir, struct fd_rt_fwd_hdl ** S_OUT(handler) );
     552int fd_rt_fwd_register ( int (*rt_fwd_cb)(void * cbdata, struct msg ** msg), void * cbdata, enum fd_rt_fwd_dir dir, struct fd_rt_fwd_hdl ** handler );
    553553/*
    554554 * CALLBACK:    rt_fwd_cb
     
    624624 *  ENOMEM      : Not enough memory to complete the operation
    625625 */
    626 int fd_rt_out_register ( int (*rt_out_cb)(void * cbdata, struct msg * msg, struct fd_list * candidates), void * cbdata, int priority, struct fd_rt_out_hdl ** S_OUT(handler) );
     626int fd_rt_out_register ( int (*rt_out_cb)(void * cbdata, struct msg * msg, struct fd_list * candidates), void * cbdata, int priority, struct fd_rt_out_hdl ** handler );
    627627/*
    628628 * CALLBACK:    rt_out_cb
     
    684684
    685685int fd_event_send(struct fifo *queue, int code, size_t datasz, void * data);
    686 int fd_event_get(struct fifo *queue, int * S_OUT(code), size_t * S_OUT(datasz), void ** S_OUT(data));
    687 int fd_event_timedget(struct fifo *queue, struct timespec * timeout, int timeoutcode, int * S_OUT(code), size_t * S_OUT(datasz), void ** S_OUT(data));
     686int fd_event_get(struct fifo *queue, int * code, size_t * datasz, void ** data);
     687int fd_event_timedget(struct fifo *queue, struct timespec * timeout, int timeoutcode, int * code, size_t * datasz, void ** data);
    688688void fd_event_destroy(struct fifo **queue, void (*free_cb)(void * data));
    689689const char * fd_ev_str(int event);
     
    744744int fd_app_merge(struct fd_list * list, application_id_t aid, vendor_id_t vid, int auth, int acct);
    745745int fd_app_check(struct fd_list * list, application_id_t aid, struct fd_app **detail);
    746 int fd_app_check_common(struct fd_list * list1, struct fd_list * list2, int * S_OUT(common_found));
     746int fd_app_check_common(struct fd_list * list1, struct fd_list * list2, int * common_found);
    747747int fd_app_empty(struct fd_list * list);
    748748
Note: See TracChangeset for help on using the changeset viewer.