Added GetStartLatency handling

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5623 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2003-12-08 08:39:20 +00:00
parent 5936e65050
commit 4446fcac05
1 changed files with 10 additions and 0 deletions

View File

@ -170,6 +170,7 @@ enum {
TIMESOURCE_OP, // datablock is a struct time_source_op_info
TIMESOURCE_ADD_SLAVE_NODE,
TIMESOURCE_REMOVE_SLAVE_NODE,
TIMESOURCE_GET_START_LATENCY,
TIMESOURCE_MESSAGE_END,
};
@ -959,6 +960,15 @@ struct timesource_remove_slave_node_command : public command_data
media_node node;
};
struct timesource_get_start_latency_request : public request_data
{
};
struct timesource_get_start_latency_reply : public reply_data
{
bigtime_t start_latency;
};
struct controllable_get_parameter_web_request : public request_data
{
area_id area;