some more changes, no longer using BMediaFormats
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5522 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#ifndef _DATA_EXCHANGE_H
|
||||
#define _DATA_EXCHANGE_H
|
||||
|
||||
#include <MediaDefs.h>
|
||||
#include <MediaFormats.h>
|
||||
#include <MediaNode.h>
|
||||
#include <MediaAddOn.h>
|
||||
#include <Messenger.h>
|
||||
@@ -105,6 +105,8 @@ enum {
|
||||
SERVER_SETREFFOR,
|
||||
SERVER_REMOVEREFFOR,
|
||||
SERVER_REMOVEITEM,
|
||||
SERVER_GET_FORMAT_FOR_DESCRIPTION,
|
||||
SERVER_GET_META_DESCRIPTION_FOR_FORMAT,
|
||||
SERVER_MESSAGE_END,
|
||||
NODE_MESSAGE_START = 0x200,
|
||||
|
||||
@@ -876,6 +878,26 @@ struct server_removeitem_reply : public reply_data
|
||||
{
|
||||
};
|
||||
|
||||
struct server_get_format_for_description_request : public request_data
|
||||
{
|
||||
media_format_description description;
|
||||
};
|
||||
|
||||
struct server_get_format_for_description_reply : public reply_data
|
||||
{
|
||||
media_format format;
|
||||
};
|
||||
|
||||
struct server_get_meta_description_for_format_request : public request_data
|
||||
{
|
||||
media_format format;
|
||||
};
|
||||
|
||||
struct server_get_meta_description_for_format_reply : public reply_data
|
||||
{
|
||||
media_format_description description;
|
||||
};
|
||||
|
||||
struct node_request_completed_command : public command_data
|
||||
{
|
||||
media_request_info info;
|
||||
|
||||
Reference in New Issue
Block a user