1 #include <boost/config.hpp>
2
3 #ifndef BOOST_MSVC
4
main()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/bind.hpp>
33 #include <boost/core/lightweight_test.hpp>
34
35 using namespace boost::placeholders;
36
37 //
38
f_0()39 long __stdcall f_0()
40 {
41 return 17041L;
42 }
43
f_1(long a)44 long __stdcall f_1(long a)
45 {
46 return a;
47 }
48
f_2(long a,long b)49 long __stdcall f_2(long a, long b)
50 {
51 return a + 10 * b;
52 }
53
f_3(long a,long b,long c)54 long __stdcall f_3(long a, long b, long c)
55 {
56 return a + 10 * b + 100 * c;
57 }
58
f_4(long a,long b,long c,long d)59 long __stdcall f_4(long a, long b, long c, long d)
60 {
61 return a + 10 * b + 100 * c + 1000 * d;
62 }
63
f_5(long a,long b,long c,long d,long e)64 long __stdcall f_5(long a, long b, long c, long d, long e)
65 {
66 return a + 10 * b + 100 * c + 1000 * d + 10000 * e;
67 }
68
f_6(long a,long b,long c,long d,long e,long f)69 long __stdcall f_6(long a, long b, long c, long d, long e, long f)
70 {
71 return a + 10 * b + 100 * c + 1000 * d + 10000 * e + 100000 * f;
72 }
73
f_7(long a,long b,long c,long d,long e,long f,long g)74 long __stdcall f_7(long a, long b, long c, long d, long e, long f, long g)
75 {
76 return a + 10 * b + 100 * c + 1000 * d + 10000 * e + 100000 * f + 1000000 * g;
77 }
78
f_8(long a,long b,long c,long d,long e,long f,long g,long h)79 long __stdcall f_8(long a, long b, long c, long d, long e, long f, long g, long h)
80 {
81 return a + 10 * b + 100 * c + 1000 * d + 10000 * e + 100000 * f + 1000000 * g + 10000000 * h;
82 }
83
f_9(long a,long b,long c,long d,long e,long f,long g,long h,long i)84 long __stdcall f_9(long a, long b, long c, long d, long e, long f, long g, long h, long i)
85 {
86 return a + 10 * b + 100 * c + 1000 * d + 10000 * e + 100000 * f + 1000000 * g + 10000000 * h + 100000000 * i;
87 }
88
function_test()89 void function_test()
90 {
91 using namespace boost;
92
93 int const i = 1;
94
95 BOOST_TEST( bind(f_0)(i) == 17041L );
96 BOOST_TEST( bind(f_1, _1)(i) == 1L );
97 BOOST_TEST( bind(f_2, _1, 2)(i) == 21L );
98 BOOST_TEST( bind(f_3, _1, 2, 3)(i) == 321L );
99 BOOST_TEST( bind(f_4, _1, 2, 3, 4)(i) == 4321L );
100 BOOST_TEST( bind(f_5, _1, 2, 3, 4, 5)(i) == 54321L );
101 BOOST_TEST( bind(f_6, _1, 2, 3, 4, 5, 6)(i) == 654321L );
102 BOOST_TEST( bind(f_7, _1, 2, 3, 4, 5, 6, 7)(i) == 7654321L );
103 BOOST_TEST( bind(f_8, _1, 2, 3, 4, 5, 6, 7, 8)(i) == 87654321L );
104 BOOST_TEST( bind(f_9, _1, 2, 3, 4, 5, 6, 7, 8, 9)(i) == 987654321L );
105 }
106
main()107 int main()
108 {
109 function_test();
110 return boost::report_errors();
111 }
112
113 #endif
114