git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15804 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
440 B
C++
26 lines
440 B
C++
/*
|
|
* Copyright 2005, Haiku.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Axel Dörfler, [email protected]
|
|
*/
|
|
#ifndef DANO_MESSAGE_H
|
|
#define DANO_MESSAGE_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
class BMessage;
|
|
class BDataIO;
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
status_t unflatten_dano_message(uint32 format, BDataIO& stream, BMessage& message);
|
|
ssize_t dano_message_flattened_size(const char* buffer);
|
|
|
|
}
|
|
|
|
#endif // DANO_MESSAGE_H
|