Ignore:
Timestamp:
Nov 20, 2005 7:55:42 PM (18 years ago)
Author:
bennylp
Message:

Added hex character conversion utility in ctype

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/os_core_win32.c

    r51 r62  
    130130    pj_status_t rc; 
    131131 
    132     PJ_LOG(5, ("pj_init", "Initializing PJ Library..")); 
    133  
    134132    /* Init Winsock.. */ 
    135133    if (WSAStartup(MAKEWORD(2,0), &wsa) != 0) { 
    136         PJ_LOG(1, ("pj_init", "Winsock initialization has returned an error")); 
    137134        return PJ_RETURN_OS_ERROR(WSAGetLastError()); 
    138135    } 
     
    140137    /* Init this thread's TLS. */ 
    141138    if ((rc=pj_thread_init()) != PJ_SUCCESS) { 
    142         PJ_LOG(1, ("pj_init", "Thread initialization has returned an error")); 
    143139        return rc; 
    144140    } 
Note: See TracChangeset for help on using the changeset viewer.