Home | History | Annotate | Download | only in include
      1 /**
      2  * This file has no copyright assigned and is placed in the Public Domain.
      3  * This file is part of the mingw-w64 runtime package.
      4  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
      5  */
      6 #ifndef _INC_NAPERROR
      7 #define _INC_NAPERROR
      8 
      9 #if (_WIN32_WINNT >= 0x0600)
     10 
     11 #define NAP_E_INVALID_PACKET            _HRESULT_TYPEDEF_(0x80270001)
     12 #define NAP_E_MISSING_SOH               _HRESULT_TYPEDEF_(0x80270002)
     13 #define NAP_E_CONFLICTING_ID            _HRESULT_TYPEDEF_(0x80270003)
     14 #define NAP_E_NO_CACHED_SOH             _HRESULT_TYPEDEF_(0x80270004)
     15 #define NAP_E_STILL_BOUND               _HRESULT_TYPEDEF_(0x80270005)
     16 #define NAP_E_NOT_REGISTERED            _HRESULT_TYPEDEF_(0x80270006)
     17 #define NAP_E_NOT_INITIALIZED           _HRESULT_TYPEDEF_(0x80270007)
     18 #define NAP_E_MISMATCHED_ID             _HRESULT_TYPEDEF_(0x80270008)
     19 #define NAP_E_NOT_PENDING               _HRESULT_TYPEDEF_(0x80270009)
     20 #define NAP_E_ID_NOT_FOUND              _HRESULT_TYPEDEF_(0x8027000A)
     21 #define NAP_E_MAXSIZE_TOO_SMALL         _HRESULT_TYPEDEF_(0x8027000B)
     22 #define NAP_E_SERVICE_NOT_RUNNING       _HRESULT_TYPEDEF_(0x8027000C)
     23 #define NAP_S_CERT_ALREADY_PRESENT      _HRESULT_TYPEDEF_(0x0027000D)
     24 #define NAP_E_ENTITY_DISABLED           _HRESULT_TYPEDEF_(0x8027000E)
     25 #define NAP_E_NETSH_GROUPPOLICY_ERROR   _HRESULT_TYPEDEF_(0x8027000F)
     26 #define NAP_E_TOO_MANY_CALLS            _HRESULT_TYPEDEF_(0x80270010)
     27 
     28 #if (_WIN32_WINNT >= 0x0601)
     29 
     30 #define NAP_E_SHV_CONFIG_EXISTED        _HRESULT_TYPEDEF_(0x80270011)
     31 #define NAP_E_SHV_CONFIG_NOT_FOUND      _HRESULT_TYPEDEF_(0x80270012)
     32 #define NAP_E_SHV_TIMEOUT               _HRESULT_TYPEDEF_(0x80270013)
     33 
     34 #endif /*(_WIN32_WINNT >= 0x0601)*/
     35 
     36 #endif /*(_WIN32_WINNT >= 0x0600)*/
     37 
     38 #endif /* _INC_NAPERROR */
     39 
     40