Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
17f26347
Commit
17f26347
authored
Nov 25, 2002
by
Olivier Teulière
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* small compilation fixes for win32
parent
881768ad
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
include/vlc_common.h
include/vlc_common.h
+2
-2
modules/video_output/directx/events.c
modules/video_output/directx/events.c
+3
-3
No files found.
include/vlc_common.h
View file @
17f26347
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* Collection of useful common types and macros definitions
* Collection of useful common types and macros definitions
*****************************************************************************
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: vlc_common.h,v 1.4
0 2002/11/24 18:54:54 sam
Exp $
* $Id: vlc_common.h,v 1.4
1 2002/11/25 03:12:42 ipkiss
Exp $
*
*
* Authors: Samuel Hocevar <sam@via.ecp.fr>
* Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr>
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*****************************************************************************/
*****************************************************************************/
#if defined( __BORLANDC__ )
#if defined( __BORLANDC__ )
# undef PACKAGE
# undef PACKAGE
# undef HAVE_INTTYPES_H
#endif
#endif
#include "config.h"
#include "config.h"
...
@@ -37,6 +36,7 @@
...
@@ -37,6 +36,7 @@
#if defined( __BORLANDC__ )
#if defined( __BORLANDC__ )
# undef HAVE_VARIADIC_MACROS
# undef HAVE_VARIADIC_MACROS
# undef HAVE_STDINT_H
# undef HAVE_STDINT_H
# undef HAVE_INTTYPES_H
#endif
#endif
#include "vlc_config.h"
#include "vlc_config.h"
...
...
modules/video_output/directx/events.c
View file @
17f26347
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* events.c: Windows DirectX video output events handler
* events.c: Windows DirectX video output events handler
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: events.c,v 1.
7 2002/11/22 15:24:10 sam
Exp $
* $Id: events.c,v 1.
8 2002/11/25 03:12:42 ipkiss
Exp $
*
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
*
...
@@ -592,11 +592,11 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
...
@@ -592,11 +592,11 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
{
{
/* Store p_vout for future use */
/* Store p_vout for future use */
p_vout
=
(
vout_thread_t
*
)((
CREATESTRUCT
*
)
lParam
)
->
lpCreateParams
;
p_vout
=
(
vout_thread_t
*
)((
CREATESTRUCT
*
)
lParam
)
->
lpCreateParams
;
SetWindowLong
(
h
W
nd
,
GWL_USERDATA
,
(
LONG
)
p_vout
);
SetWindowLong
(
h
w
nd
,
GWL_USERDATA
,
(
LONG
)
p_vout
);
}
}
else
else
{
{
p_vout
=
(
vout_thread_t
*
)
GetWindowLong
(
h
W
nd
,
GWL_USERDATA
);
p_vout
=
(
vout_thread_t
*
)
GetWindowLong
(
h
w
nd
,
GWL_USERDATA
);
}
}
switch
(
message
)
switch
(
message
)
...
...
Write
Preview
Markdown
is supported
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