/* Editor Settings: expandtabs and use 4 spaces for indentation * ex: set softtabstop=4 tabstop=8 expandtab shiftwidth=4: * * -*- mode: c, c-basic-offset: 4 -*- */ /* * Copyright Likewise Software 2004-2008 * All rights reserved. * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the license, or (at * your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser * General Public License for more details. You should have received a copy * of the GNU Lesser General Public License along with this program. If * not, see . * * LIKEWISE SOFTWARE MAKES THIS SOFTWARE AVAILABLE UNDER OTHER LICENSING * TERMS AS WELL. IF YOU HAVE ENTERED INTO A SEPARATE LICENSE AGREEMENT * WITH LIKEWISE SOFTWARE, THEN YOU MAY ELECT TO USE THE SOFTWARE UNDER THE * TERMS OF THAT SOFTWARE LICENSE AGREEMENT INSTEAD OF THE TERMS OF THE GNU * LESSER GENERAL PUBLIC LICENSE, NOTWITHSTANDING THE ABOVE NOTICE. IF YOU * HAVE QUESTIONS, OR WISH TO REQUEST A COPY OF THE ALTERNATE LICENSING * TERMS OFFERED BY LIKEWISE SOFTWARE, PLEASE CONTACT LIKEWISE SOFTWARE AT * license@likewisesoftware.com */ /* * Copyright (C) Likewise Software. All rights reserved. * * Module Name: * * lsasystem.h * * Abstract: * * Likewise Security and Authentication Subsystem (LSASS) System Headers * * Authors: Krishna Ganugapati (krishnag@likewisesoftware.com) * Sriram Nambakam (snambakam@likewisesoftware.com) */ #ifdef UNICODE #undef UNICODE #endif #ifndef _POSIX_PTHREAD_SEMANTICS #define _POSIX_PTHREAD_SEMANTICS 1 #endif #ifdef WIN32 #include #include #define SECURITY_WIN32 #include #include #endif #include #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_SYS_VARARGS_H #include #endif #include #ifdef HAVE_TIME_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #include #ifdef HAVE_STRINGS_H #include #endif #ifdef HAVE_STDBOOL_H #include #endif #ifndef WIN32 #include /* pthread.h must be included before errno so that a thread-safe errno is used if available. */ #include #include #include #include #include #include #include #include #include #ifdef HAVE_UNISTD_H #include #endif #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_SYS_SYSTEMINFO_H #include #endif #ifdef HAVE_SYS_UTSNAME_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #if HAVE_WC16STR_H #include #endif #if defined(__hpux__) && defined(_XOPEN_SOURCE_EXTENDED) # include "xpg_socket.h" #endif #include #if HAVE_SYS_PSTAT_H #include #endif #if HAVE_PROCFS_H #include #elif HAVE_SYS_PROCFS_H #include #endif #if HAVE_KVM_H #include #endif #if HAVE_SYS_PARAM_H #include #endif #if HAVE_SYS_SYSCTL_H #include #endif #if HAVE_SYS_USER_H #include #endif #if HAVE_LIBGEN_H #include #endif #if HAVE_EXECINFO_H #include #endif #if HAVE_SYS_REGSET_H #include #endif #include #endif