source
start.c
line
27 - 37
function
27 APR_DECLARE(apr_status_t) apr_app_initialize(int *argc,
28 const char * const * *argv,
29 const char * const * *env)
30 {
31 /* An absolute noop. At present, only Win32 requires this stub, but it's
32 * required in order to move command arguments passed through the service
33 * control manager into the process, and it's required to fix the char*
34 * data passed in from win32 unicode into utf-8, win32's apr internal fmt.
35 */
36 return apr_initialize();
37 }
最終更新:2009年02月08日 17:14