]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/winapi/test/run/security_abi.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / winapi / test / run / security_abi.cpp
1 /*
2 * Copyright Andrey Semashev 2018.
3 * Distributed under the Boost Software License, Version 1.0.
4 * (See accompanying file LICENSE_1_0.txt or copy at
5 * http://www.boost.org/LICENSE_1_0.txt)
6 */
7 /*!
8 * \file security_abi.cpp
9 * \author Andrey Semashev
10 * \date 10.03.2018
11 *
12 * \brief This file contains ABI test for security.hpp
13 */
14
15 #include <boost/winapi/security.hpp>
16 #include <windows.h>
17 #include "abi_test_tools.hpp"
18
19 int main()
20 {
21 #if BOOST_WINAPI_PARTITION_APP_SYSTEM
22
23 BOOST_WINAPI_TEST_TYPE_SAME(PSID);
24 BOOST_WINAPI_TEST_TYPE_SAME(SECURITY_DESCRIPTOR_CONTROL);
25 BOOST_WINAPI_TEST_TYPE_SAME(PSECURITY_DESCRIPTOR_CONTROL);
26
27 BOOST_WINAPI_TEST_STRUCT(ACL, (AclRevision)(Sbz1)(AclSize)(AceCount)(Sbz2));
28 BOOST_WINAPI_TEST_STRUCT(SECURITY_DESCRIPTOR, (Revision)(Sbz1)(Control)(Owner)(Group)(Sacl)(Dacl));
29
30 #endif // BOOST_WINAPI_PARTITION_APP_SYSTEM
31
32 return boost::report_errors();
33 }