2010-07-08 18:54:25 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2010, Haiku, Inc.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2010-07-16 20:49:42 +04:00
|
|
|
#ifndef _BINARY_COMPATIBILITY_SUPPORT_H_
|
|
|
|
#define _BINARY_COMPATIBILITY_SUPPORT_H_
|
2010-07-08 18:54:25 +04:00
|
|
|
|
|
|
|
|
|
|
|
#include <binary_compatibility/Global.h>
|
|
|
|
|
|
|
|
|
|
|
|
struct perform_data_all_unarchived {
|
|
|
|
const BMessage* archive;
|
|
|
|
status_t return_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct perform_data_all_archived {
|
|
|
|
BMessage* archive;
|
|
|
|
status_t return_value;
|
|
|
|
};
|
|
|
|
|
2010-07-16 20:49:42 +04:00
|
|
|
#endif /* _BINARY_COMPATIBILITY_SUPPORT_H_ */
|