Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
bbe70b81
Commit
bbe70b81
authored
Aug 01, 2002
by
Tony Castley
Browse files
Compilation fixes for C++ environments like BeOS.
parent
1f327d87
Changes
2
Show whitespace changes
Inline
Side-by-side
include/modules_inner.h
View file @
bbe70b81
...
...
@@ -2,7 +2,7 @@
* modules_inner.h : Macros used from within a module.
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: modules_inner.h,v 1.2
5
2002/0
7/31 22:54:21 sam
Exp $
* $Id: modules_inner.h,v 1.2
6
2002/0
8/01 11:04:46 tcastley
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -117,7 +117,7 @@
#define add_submodule( ) \
p_submodule->pp_shortcuts[ i_shortcut ] = NULL; \
p_submodule = vlc_object_create( p_module, VLC_OBJECT_MODULE );
\
p_submodule =
(module_t *)
vlc_object_create( p_module, VLC_OBJECT_MODULE );\
vlc_object_attach( p_submodule, p_module ); \
p_submodule->b_submodule = VLC_TRUE; \
/* Nuahahaha! Heritage! Polymorphism! Ugliness!! */
\
...
...
plugins/memcpy/memcpy.c
View file @
bbe70b81
...
...
@@ -2,7 +2,7 @@
* memcpy.c : classic memcpy module
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: memcpy.c,v 1.1
0
2002/0
7/31 20:56:52 sam
Exp $
* $Id: memcpy.c,v 1.1
1
2002/0
8/01 11:04:46 tcastley
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -68,7 +68,7 @@ static int Activate ( vlc_object_t *p_this )
#ifdef MODULE_NAME_IS_memcpy
p_this
->
p_vlc
->
pf_memcpy
=
memcpy
;
#else
p_this
->
p_vlc
->
pf_memcpy
=
E_
(
fast_memcpy
)
;
p_this
->
p_vlc
->
pf_memcpy
=
fast_memcpy
;
#endif
return
VLC_SUCCESS
;
...
...
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