Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
7a3fdc9f
Commit
7a3fdc9f
authored
May 01, 2008
by
Rémi Denis-Courmont
Browse files
Fix expansion to no-op
parent
a660c4fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/vlc_messages.h
View file @
7a3fdc9f
...
...
@@ -364,10 +364,10 @@ VLC_EXPORT( void, __stats_ComputeGlobalStats, (vlc_object_t*,global_stats_t*));
#define stats_TimerDump(a,b) __stats_TimerDump( VLC_OBJECT(a), b )
#define stats_TimersDumpAll(a) __stats_TimersDumpAll( VLC_OBJECT(a) )
#else
#define stats_TimerStart(a,b,c)
{}
#define stats_TimerStop(a,b)
{}
#define stats_TimerDump(a,b)
{}
#define stats_TimersDumpAll(a)
{}
#define stats_TimerStart(a,b,c)
(void)0
#define stats_TimerStop(a,b)
(void)0
#define stats_TimerDump(a,b)
(void)0
#define stats_TimersDumpAll(a)
(void)0
#endif
VLC_EXPORT
(
void
,
__stats_TimerStart
,
(
vlc_object_t
*
,
const
char
*
,
unsigned
int
)
);
VLC_EXPORT
(
void
,
__stats_TimerStop
,
(
vlc_object_t
*
,
unsigned
int
)
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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