src/os/win32/ngx_dlopen.c - nginx source code

Functions defined

Source code


  1. /*
  2. * Copyright (C) Maxim Dounin
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #include <ngx_config.h>
  6. #include <ngx_core.h>


  7. char *
  8. ngx_dlerror(void)
  9. {
  10.     u_char         *p;
  11.     static u_char   errstr[NGX_MAX_ERROR_STR];

  12.     p = ngx_strerror(ngx_errno, errstr, NGX_MAX_ERROR_STR);
  13.     *p = '\0';

  14.     return (char *) errstr;
  15. }