Ignore:
Timestamp:
Jul 20, 2007 8:08:30 AM (17 years ago)
Author:
bennylp
Message:

Ticket #354: build PJLIB as dynamic libraries (.DSO) in Symbian

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/sock_select.h

    r974 r1405  
    6565 */ 
    6666PJ_DECL(void) PJ_FD_ZERO(pj_fd_set_t *fdsetp); 
     67 
     68 
     69/** 
     70 * This is an internal function, application shouldn't use this. 
     71 *  
     72 * Get the number of descriptors in the set. This is defined in sock_select.c 
     73 * This function will only return the number of sockets set from PJ_FD_SET 
     74 * operation. When the set is modified by other means (such as by select()), 
     75 * the count will not be reflected here. 
     76 * 
     77 * @param fdsetp    The descriptor set. 
     78 * 
     79 * @return          Number of descriptors in the set. 
     80 */ 
     81PJ_DECL(pj_size_t) PJ_FD_COUNT(const pj_fd_set_t *fdsetp); 
    6782 
    6883 
Note: See TracChangeset for help on using the changeset viewer.