Brian Silverman | ce4aa8d | 2018-08-04 23:36:03 -0700 | [diff] [blame^] | 1 | #include <boost/config.hpp> |
| 2 | |
| 3 | #ifndef BOOST_MSVC |
| 4 | |
| 5 | int main() |
| 6 | { |
| 7 | } |
| 8 | |
| 9 | #else |
| 10 | |
| 11 | #include <boost/config.hpp> |
| 12 | |
| 13 | #if defined(BOOST_MSVC) |
| 14 | #pragma warning(disable: 4786) // identifier truncated in debug info |
| 15 | #pragma warning(disable: 4710) // function not inlined |
| 16 | #pragma warning(disable: 4711) // function selected for automatic inline expansion |
| 17 | #pragma warning(disable: 4514) // unreferenced inline removed |
| 18 | #endif |
| 19 | |
| 20 | // |
| 21 | // bind_stdcall_test.cpp - test for bind.hpp + __stdcall (free functions) |
| 22 | // |
| 23 | // Copyright (c) 2001 Peter Dimov and Multi Media Ltd. |
| 24 | // |
| 25 | // Distributed under the Boost Software License, Version 1.0. (See |
| 26 | // accompanying file LICENSE_1_0.txt or copy at |
| 27 | // http://www.boost.org/LICENSE_1_0.txt) |
| 28 | // |
| 29 | |
| 30 | #define BOOST_BIND_ENABLE_STDCALL |
| 31 | |
| 32 | #include <boost/bind.hpp> |
| 33 | |
| 34 | #if defined(BOOST_MSVC) && (BOOST_MSVC < 1300) |
| 35 | #pragma warning(push, 3) |
| 36 | #endif |
| 37 | |
| 38 | #include <iostream> |
| 39 | |
| 40 | #if defined(BOOST_MSVC) && (BOOST_MSVC < 1300) |
| 41 | #pragma warning(pop) |
| 42 | #endif |
| 43 | |
| 44 | #include <boost/detail/lightweight_test.hpp> |
| 45 | |
| 46 | // |
| 47 | |
| 48 | long __stdcall f_0() |
| 49 | { |
| 50 | return 17041L; |
| 51 | } |
| 52 | |
| 53 | long __stdcall f_1(long a) |
| 54 | { |
| 55 | return a; |
| 56 | } |
| 57 | |
| 58 | long __stdcall f_2(long a, long b) |
| 59 | { |
| 60 | return a + 10 * b; |
| 61 | } |
| 62 | |
| 63 | long __stdcall f_3(long a, long b, long c) |
| 64 | { |
| 65 | return a + 10 * b + 100 * c; |
| 66 | } |
| 67 | |
| 68 | long __stdcall f_4(long a, long b, long c, long d) |
| 69 | { |
| 70 | return a + 10 * b + 100 * c + 1000 * d; |
| 71 | } |
| 72 | |
| 73 | long __stdcall f_5(long a, long b, long c, long d, long e) |
| 74 | { |
| 75 | return a + 10 * b + 100 * c + 1000 * d + 10000 * e; |
| 76 | } |
| 77 | |
| 78 | long __stdcall f_6(long a, long b, long c, long d, long e, long f) |
| 79 | { |
| 80 | return a + 10 * b + 100 * c + 1000 * d + 10000 * e + 100000 * f; |
| 81 | } |
| 82 | |
| 83 | long __stdcall f_7(long a, long b, long c, long d, long e, long f, long g) |
| 84 | { |
| 85 | return a + 10 * b + 100 * c + 1000 * d + 10000 * e + 100000 * f + 1000000 * g; |
| 86 | } |
| 87 | |
| 88 | long __stdcall f_8(long a, long b, long c, long d, long e, long f, long g, long h) |
| 89 | { |
| 90 | return a + 10 * b + 100 * c + 1000 * d + 10000 * e + 100000 * f + 1000000 * g + 10000000 * h; |
| 91 | } |
| 92 | |
| 93 | long __stdcall f_9(long a, long b, long c, long d, long e, long f, long g, long h, long i) |
| 94 | { |
| 95 | return a + 10 * b + 100 * c + 1000 * d + 10000 * e + 100000 * f + 1000000 * g + 10000000 * h + 100000000 * i; |
| 96 | } |
| 97 | |
| 98 | void function_test() |
| 99 | { |
| 100 | using namespace boost; |
| 101 | |
| 102 | int const i = 1; |
| 103 | |
| 104 | BOOST_TEST( bind(f_0)(i) == 17041L ); |
| 105 | BOOST_TEST( bind(f_1, _1)(i) == 1L ); |
| 106 | BOOST_TEST( bind(f_2, _1, 2)(i) == 21L ); |
| 107 | BOOST_TEST( bind(f_3, _1, 2, 3)(i) == 321L ); |
| 108 | BOOST_TEST( bind(f_4, _1, 2, 3, 4)(i) == 4321L ); |
| 109 | BOOST_TEST( bind(f_5, _1, 2, 3, 4, 5)(i) == 54321L ); |
| 110 | BOOST_TEST( bind(f_6, _1, 2, 3, 4, 5, 6)(i) == 654321L ); |
| 111 | BOOST_TEST( bind(f_7, _1, 2, 3, 4, 5, 6, 7)(i) == 7654321L ); |
| 112 | BOOST_TEST( bind(f_8, _1, 2, 3, 4, 5, 6, 7, 8)(i) == 87654321L ); |
| 113 | BOOST_TEST( bind(f_9, _1, 2, 3, 4, 5, 6, 7, 8, 9)(i) == 987654321L ); |
| 114 | } |
| 115 | |
| 116 | int main() |
| 117 | { |
| 118 | function_test(); |
| 119 | return boost::report_errors(); |
| 120 | } |
| 121 | |
| 122 | #endif |