errno.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
  3. * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #ifndef __PJ_COMPAT_ERRNO_H__
  20. #define __PJ_COMPAT_ERRNO_H__
  21. #if defined(PJ_WIN32) && PJ_WIN32 != 0 || \
  22. defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE != 0 || \
  23. defined(PJ_WIN64) && PJ_WIN64 != 0
  24. typedef unsigned long pj_os_err_type;
  25. # define pj_get_native_os_error() GetLastError()
  26. # define pj_get_native_netos_error() WSAGetLastError()
  27. #elif defined(PJ_HAS_ERRNO_VAR) && PJ_HAS_ERRNO_VAR!= 0
  28. typedef int pj_os_err_type;
  29. # define pj_get_native_os_error() (errno)
  30. # define pj_get_native_netos_error() (errno)
  31. #else
  32. # error "Please define how to get errno for this platform here!"
  33. #endif
  34. #endif /* __PJ_COMPAT_ERRNO_H__ */