Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
TPF
jack2
Commits
d5973baf
Commit
d5973baf
authored
Jul 06, 2014
by
Stéphane Letz
Browse files
Merge pull request #67 from Igevorse/jack_transport_reposition_fix
jack_transport_reposition linkage fix
parents
a48fea3c
4e8101eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
common/JackWeakAPI.c
View file @
d5973baf
...
...
@@ -254,7 +254,7 @@ DECL_FUNCTION(int, jack_set_timebase_callback, (jack_client_t *client,
DECL_FUNCTION
(
int
,
jack_transport_locate
,
(
jack_client_t
*
client
,
jack_nframes_t
frame
),
(
client
,
frame
));
DECL_FUNCTION
(
jack_transport_state_t
,
jack_transport_query
,
(
const
jack_client_t
*
client
,
jack_position_t
*
pos
),
(
client
,
pos
));
DECL_FUNCTION
(
jack_nframes_t
,
jack_get_current_transport_frame
,
(
const
jack_client_t
*
client
),
(
client
));
DECL_FUNCTION
(
int
,
jack_transport_reposition
,
(
jack_client_t
*
client
,
jack_position_t
*
pos
),
(
client
,
pos
));
DECL_FUNCTION
(
int
,
jack_transport_reposition
,
(
jack_client_t
*
client
,
const
jack_position_t
*
pos
),
(
client
,
pos
));
DECL_VOID_FUNCTION
(
jack_transport_start
,
(
jack_client_t
*
client
),
(
client
));
DECL_VOID_FUNCTION
(
jack_transport_stop
,
(
jack_client_t
*
client
),
(
client
));
DECL_VOID_FUNCTION
(
jack_get_transport_info
,
(
jack_client_t
*
client
,
jack_transport_info_t
*
tinfo
),
(
client
,
tinfo
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment