mirror of
https://review.haiku-os.org/haiku
synced 2025-02-07 14:25:58 +01:00
unarchiving protocol to support archival of arbitrary object graphs. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37431 a95241bf-73f2-0310-859d-f6bbb57e9c96
24 lines
439 B
C
24 lines
439 B
C
/*
|
|
* Copyright 2010, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BINARY_COMPATIBILITY_SUPPORT_H
|
|
#define _BINARY_COMPATIBILITY_SUPPORT_H
|
|
|
|
|
|
#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;
|
|
};
|
|
|
|
#endif /* _BINARY_COMPATIBILITY_INTERFACE_H_ */
|