Ignore:
Timestamp:
Jan 18, 2006 11:34:15 PM (18 years ago)
Author:
bennylp
Message:

Complete tsx layer selftest, implemented authentication framework

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/include/pjlib-util/scanner.h

    r81 r123  
    490490 * @param state     Variable to store scanner's state. 
    491491 */ 
    492 PJ_DECL(void) pj_scan_save_state( pj_scanner *scanner, pj_scan_state *state); 
     492PJ_DECL(void) pj_scan_save_state( const pj_scanner *scanner,  
     493                                  pj_scan_state *state); 
    493494 
    494495 
     
    502503 */ 
    503504PJ_DECL(void) pj_scan_restore_state( pj_scanner *scanner,  
    504                                       pj_scan_state *state); 
     505                                     pj_scan_state *state); 
    505506 
    506507/** 
     
    511512 * @return          The column position. 
    512513 */ 
    513 PJ_INLINE(int) pj_scan_get_col( pj_scanner *scanner ) 
     514PJ_INLINE(int) pj_scan_get_col( const pj_scanner *scanner ) 
    514515{ 
    515516    return scanner->curptr - scanner->start_line; 
Note: See TracChangeset for help on using the changeset viewer.