server: Create the initial thread as a separate request.
[wine.git] / include / sal.h
blob6eb0a6c02dee28988ef949c8a26a1e89b2ccbc17
1 /*
2 * Copyright (C) 2018 Alistair Leslie-Hughes
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __WINE_SAL_H__
20 #define __WINE_SAL_H__
22 #define _Check_return_
24 #define _Deref_out_
25 #define _Deref_out_opt_
26 #define _Deref_out_opt_z_
27 #define _Deref_post_opt_cap_(count)
28 #define _Deref_post_opt_valid_
30 #define _In_
31 #define _In_bytecount_(count)
32 #define _In_count_(count)
33 #define _In_opt_
34 #define _In_opt_count_(count)
35 #define _In_opt_z_
36 #define _In_reads_(count)
37 #define _In_reads_bytes_(count)
38 #define _In_reads_opt_z_(count)
39 #define _In_reads_z_(count)
40 #define _In_z_
42 #define _Inout_
43 #define _Inout_cap_(count)
44 #define _Inout_opt_
45 #define _Inout_updates_z_(count)
46 #define _Inout_z_
47 #define _Inout_z_bytecap_(count)
48 #define _Inout_z_cap_(count)
49 #define _Inout_z_cap_c_(count)
51 #define _Null_terminated_
53 #define _Out_
54 #define _Out_bytecap_(count)
55 #define _Out_bytecapcount_(count)
56 #define _Out_bytecap_post_bytecount_(count1, count2)
57 #define _Out_cap_(count)
58 #define _Out_cap_post_count_(count1, count2)
59 #define _Out_opt_
60 #define _Out_opt_z_cap_(count)
61 #define _Out_opt_z_cap_post_count_(count1, count2)
62 #define _Out_writes_(count)
63 #define _Out_writes_bytes_to_(count1, count2)
64 #define _Out_writes_opt_(count)
65 #define _Out_writes_opt_z_(count)
66 #define _Out_writes_to_(count1, count2)
67 #define _Out_writes_z_(count)
68 #define _Out_z_cap_(count)
69 #define _Out_z_cap_c_(count)
70 #define _Out_z_cap_post_count_(count1, count2)
72 #define _Outptr_result_buffer_(count)
73 #define _Outptr_result_maybenull_z_
75 #define _Post_invalid_
76 #define _Post_writable_byte_size_(count)
77 #define _Post_z_
79 #define _Pre_maybenull_
80 #define _Pre_notnull_
81 #define _Pre_writable_size_(count)
83 #define _Printf_format_string_
85 #define _Ret_maybenull_
86 #define _Ret_maybenull_z_
87 #define _Ret_opt_
88 #define _Ret_opt_z_cap_(count)
89 #define _Ret_writes_bytes_maybenull_(count)
90 #define _Ret_z_
92 #define _Success_(exp)
94 #endif