Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
0562366c
Commit
0562366c
authored
Feb 12, 2003
by
Olivier Teulière
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* compilation fix
* all files are stored in dos mode, or Borland won't compile some of them...
parent
3fedb969
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
2399 additions
and
2393 deletions
+2399
-2393
modules/gui/win32/about.cpp
modules/gui/win32/about.cpp
+47
-47
modules/gui/win32/mainframe.cpp
modules/gui/win32/mainframe.cpp
+728
-722
modules/gui/win32/menu.cpp
modules/gui/win32/menu.cpp
+1020
-1020
modules/gui/win32/menu.h
modules/gui/win32/menu.h
+98
-98
modules/gui/win32/sout.h
modules/gui/win32/sout.h
+69
-69
modules/gui/win32/subtitles.cpp
modules/gui/win32/subtitles.cpp
+65
-65
modules/gui/win32/subtitles.h
modules/gui/win32/subtitles.h
+55
-55
modules/gui/win32/win32.bpf
modules/gui/win32/win32.bpf
+2
-2
modules/gui/win32/win32.cpp
modules/gui/win32/win32.cpp
+315
-315
No files found.
modules/gui/win32/about.cpp
View file @
0562366c
modules/gui/win32/mainframe.cpp
View file @
0562366c
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <vlc/intf.h>
#include <vlc/intf.h>
#include <vlc/vout.h>
#include <vlc/vout.h>
#include <vlc/aout.h>
#include "dragdrop.h"
#include "dragdrop.h"
#include "mainframe.h"
#include "mainframe.h"
...
@@ -43,7 +44,12 @@
...
@@ -43,7 +44,12 @@
#include "netutils.h"
#include "netutils.h"
//---------------------------------------------------------------------------
/*****************************************************************************
* BORLAND SUCKS
* If the following pragma doesn't end with \r\n instead of \n, the file
* doesn't compile anymore... Funny, isn't it?
* With vim, you can use ":set ff=dos" to correct it
*****************************************************************************/
#pragma link "CSPIN"
#pragma link "CSPIN"
#pragma resource "*.dfm"
#pragma resource "*.dfm"
...
...
modules/gui/win32/menu.cpp
View file @
0562366c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* menu.cpp: functions to handle menu items
* menu.cpp: functions to handle menu items
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* Copyright (C) 2002-2003 VideoLAN
* $Id: menu.cpp,v 1.1
3 2003/02/06 23:59:40 sam Exp $
* $Id: menu.cpp,v 1.1
4 2003/02/12 02:11:58 ipkiss Exp $
*
*
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
*
*
...
...
modules/gui/win32/menu.h
View file @
0562366c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* menu.h: prototypes for menu functions
* menu.h: prototypes for menu functions
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* Copyright (C) 2002 VideoLAN
* $Id: menu.h,v 1.
4 2003/01/23 03:33:34 ipkiss Exp $
* $Id: menu.h,v 1.
5 2003/02/12 02:11:58 ipkiss Exp $
*
*
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
*
*
...
...
modules/gui/win32/sout.h
View file @
0562366c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* sout.h: the stream ouput dialog box
* sout.h: the stream ouput dialog box
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* Copyright (C) 2002-2003 VideoLAN
* $Id: sout.h,v 1.
3 2003/01/26 03:55:36 ipkiss Exp $
* $Id: sout.h,v 1.
4 2003/02/12 02:11:58 ipkiss Exp $
*
*
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
*
*
...
...
modules/gui/win32/subtitles.cpp
View file @
0562366c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* subtitles.cpp: Dialog box for divx subtitle selection
* subtitles.cpp: Dialog box for divx subtitle selection
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* Copyright (C) 2002-2003 VideoLAN
* $Id: subtitles.cpp,v 1.
2 2003/01/26 03:55:36 ipkiss Exp $
* $Id: subtitles.cpp,v 1.
3 2003/02/12 02:11:58 ipkiss Exp $
*
*
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
*
*
...
...
modules/gui/win32/subtitles.h
View file @
0562366c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* subtitles.h: Dialog box for divx subtitle selection
* subtitles.h: Dialog box for divx subtitle selection
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* Copyright (C) 2002-2003 VideoLAN
* $Id: subtitles.h,v 1.
2 2003/01/26 03:55:36 ipkiss Exp $
* $Id: subtitles.h,v 1.
3 2003/02/12 02:11:58 ipkiss Exp $
*
*
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
*
*
...
...
modules/gui/win32/win32.bpf
View file @
0562366c
...
@@ -15,4 +15,4 @@ USEFORM("subtitles.cpp", SubtitlesDlg);
...
@@ -15,4 +15,4 @@ USEFORM("subtitles.cpp", SubtitlesDlg);
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
This file is used by the project manager only and should be treated like the project file
This file is used by the project manager only and should be treated like the project file
DllEntryPoint
DllEntryPoint
modules/gui/win32/win32.cpp
View file @
0562366c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* win32.cpp : Win32 interface plugin for vlc
* win32.cpp : Win32 interface plugin for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* Copyright (C) 2002-2003 VideoLAN
* $Id: win32.cpp,v 1.1
4 2003/02/01 22:21:44 ipkiss Exp $
* $Id: win32.cpp,v 1.1
5 2003/02/12 02:11:58 ipkiss Exp $
*
*
* Authors: Olivier Teulire <ipkiss@via.ecp.fr>
* Authors: Olivier Teulire <ipkiss@via.ecp.fr>
*
*
...
...
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