mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-06 06:20:23 +08:00
cguid.h, commctrl.h, commdlg.h, cpl.h, cplext.h, custcntl.h, dbt.h, dde.h, ddeml.h, dlgs.h, excpt.h, httpext.h, imagehlp.h, imm.h, initguid.h, intshcut.h, ipexport.h, iphlpapi.h, ipifcons.h, iprtrmib.h, iptypes.h, isguids.h, largeint.h, lm.h, lmaccess.h, lmalert.h, lmapibuf.h, lmat.h, lmaudit.h, lmbrowsr.h, lmchdev.h, lmconfig.h, lmcons.h, lmerr.h, lmerrlog.h, lmmsg.h, lmremutl.h, lmrepl.h, lmserver.h, lmshare.h, lmsname.h, lmstats.h, lmsvc.h, lmuse.h, lmuseflg.h, lmwksta.h, lzexpand.h, mapi.h, mciavi.h, mcx.h, mmsystem.h, mswsock.h, nb30.h, nddeapi.h, nspapi.h, ntdef.h, ntsecapi.h, ntsecpkg.h, oaidl.h, objbase.h, objfwd.h, objidl.h, odbcinst.h, ole.h, ole2.h, ole2ver.h, oleauto.h, olectl.h, olectlid.h, oledlg.h, oleidl.h, pbt.h, prsht.h, psapi.h, rapi.h, ras.h, raserror.h, rassapi.h, regstr.h, richedit.h, richole.h, rpc.h, rpcdce.h, rpcdce2.h, rpcdcep.h, rpcndr.h, rpcnsi.h, rpcnsip.h, rpcnterr.h, rpcproxy.h, schannel.h, schnlsp.h, scrnsave.h, security.h, setupapi.h, shellapi.h, shlguid.h, shlobj.h, sql.h, sqlext.h, sqltypes.h, sqlucode.h, sspi.h, subauth.h, tlhelp32.h, unknwn.h, userenv.h, w32api.h, winbase.h, wincon.h, wincrypt.h, windef.h, windows.h, windowsx.h, winerror.h, wingdi.h, wininet.h, winioctl.h, winnetwk.h, winnls.h, winnt.h, winperf.h, winreg.h, winresrc.h, winsock.h, winsock2.h, winspool.h, winsvc.h, winuser.h, winver.h, ws2tcpip.h, wsnetbs.h, wtypes.h, zmouse.h: Add #pragma GCC system_header if __GNUC__ >= 3. * include/mapi.h: Change header guard name to _MAPI_H for consistency.
45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
#ifndef _NTSECPKG_H
|
|
#define _NTSECPKG_H
|
|
#if __GNUC__ >=3
|
|
#pragma GCC system_header
|
|
#endif
|
|
|
|
#define ISC_REQ_DELEGATE 1
|
|
#define ISC_REQ_MUTUAL_AUTH 2
|
|
#define ISC_REQ_REPLAY_DETECT 4
|
|
#define ISC_REQ_SEQUENCE_DETECT 8
|
|
#define ISC_REQ_CONFIDENTIALITY 16
|
|
#define ISC_REQ_USE_SESSION_KEY 32
|
|
#define ISC_REQ_PROMPT_FOR_CREDS 64
|
|
#define ISC_REQ_USE_SUPPLIED_CREDS 128
|
|
#define ISC_REQ_ALLOCATE_MEMORY 256
|
|
#define ISC_REQ_USE_DCE_STYLE 512
|
|
#define ISC_REQ_DATAGRAM 1024
|
|
#define ISC_REQ_CONNECTION 2048
|
|
#define ISC_REQ_EXTENDED_ERROR 16384
|
|
#define ISC_REQ_STREAM 32768
|
|
#define ISC_REQ_INTEGRITY 65536
|
|
#define ISC_REQ_MANUAL_CRED_VALIDATION 524288
|
|
#define ISC_REQ_HTTP 268435456
|
|
|
|
#define ISC_RET_EXTENDED_ERROR 16384
|
|
|
|
#define ASC_REQ_DELEGATE 1
|
|
#define ASC_REQ_MUTUAL_AUTH 2
|
|
#define ASC_REQ_REPLAY_DETECT 4
|
|
#define ASC_REQ_SEQUENCE_DETECT 8
|
|
#define ASC_REQ_CONFIDENTIALITY 16
|
|
#define ASC_REQ_USE_SESSION_KEY 32
|
|
#define ASC_REQ_ALLOCATE_MEMORY 256
|
|
#define ASC_REQ_USE_DCE_STYLE 512
|
|
#define ASC_REQ_DATAGRAM 1024
|
|
#define ASC_REQ_CONNECTION 2048
|
|
#define ASC_REQ_EXTENDED_ERROR 32768
|
|
#define ASC_REQ_STREAM 65536
|
|
#define ASC_REQ_INTEGRITY 131072
|
|
|
|
#define SECURITY_NATIVE_DREP 16
|
|
#define SECURITY_NETWORK_DREP 0
|
|
|
|
#endif /* _NTSECPKG_H */
|