xref: /haiku/headers/private/binary_compatibility/Support.h (revision 7749d0bb0c358a3279b1b9cc76d8376e900130a5)
1 /*
2  * Copyright 2010, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _BINARY_COMPATIBILITY_SUPPORT_H_
6 #define _BINARY_COMPATIBILITY_SUPPORT_H_
7 
8 
9 #include <binary_compatibility/Global.h>
10 
11 
12 struct perform_data_all_unarchived {
13 	const BMessage*	archive;
14 	status_t		return_value;
15 };
16 
17 
18 struct perform_data_all_archived {
19 	BMessage*	archive;
20 	status_t	return_value;
21 };
22 
23 #endif /* _BINARY_COMPATIBILITY_SUPPORT_H_ */
24