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
311b28de
Commit
311b28de
authored
May 23, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code factorization
parent
a87e7221
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
19 deletions
+6
-19
src/misc/win32_specific.c
src/misc/win32_specific.c
+6
-19
No files found.
src/misc/win32_specific.c
View file @
311b28de
...
...
@@ -26,14 +26,13 @@
# include "config.h"
#endif
#define UNICODE
#include <vlc/vlc.h>
#include "../libvlc.h"
#include <vlc_playlist.h>
#include <vlc_charset.h>
#ifdef WIN32
/* optind, getopt(), included in unistd.h */
# include "../extras/getopt.h"
#endif
#include "../extras/getopt.h"
#if !defined( UNDER_CE )
# include <io.h>
...
...
@@ -54,7 +53,6 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv[] )
char
psz_path
[
MAX_PATH
];
char
*
psz_vlc
;
#if defined( UNDER_CE )
wchar_t
psz_wpath
[
MAX_PATH
];
if
(
GetModuleFileName
(
NULL
,
psz_wpath
,
MAX_PATH
)
)
{
...
...
@@ -63,17 +61,6 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv[] )
}
else
psz_path
[
0
]
=
'\0'
;
#else
if
(
ppsz_argv
[
0
]
)
{
GetFullPathName
(
ppsz_argv
[
0
],
MAX_PATH
,
psz_path
,
&
psz_vlc
);
}
else
if
(
!
GetModuleFileName
(
NULL
,
psz_path
,
MAX_PATH
)
)
{
psz_path
[
0
]
=
'\0'
;
}
#endif
if
(
(
psz_vlc
=
strrchr
(
psz_path
,
'\\'
))
)
*
psz_vlc
=
'\0'
;
#ifndef HAVE_RELEASE
...
...
@@ -171,7 +158,7 @@ void system_Configure( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv
msg_Info
(
p_this
,
"one instance mode ENABLED"
);
/* Use a named mutex to check if another instance is already running */
if
(
!
(
hmutex
=
CreateMutex
(
0
,
TRUE
,
_T
(
"VLC ipc "
)
_T
(
VERSION
)
)
)
)
if
(
!
(
hmutex
=
CreateMutex
(
0
,
TRUE
,
L"VLC ipc "
VERSION
)
)
)
{
/* Failed for some reason. Just ignore the option and go on as
* normal. */
...
...
@@ -210,7 +197,7 @@ void system_Configure( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv
/* Locate the window created by the IPC helper thread of the
* 1st instance */
if
(
!
(
ipcwindow
=
FindWindow
(
0
,
_T
(
"VLC ipc "
)
_T
(
VERSION
)
)
)
)
if
(
!
(
ipcwindow
=
FindWindow
(
0
,
L"VLC ipc "
VERSION
)
)
)
{
msg_Err
(
p_this
,
"one instance mode DISABLED "
"(couldn't find 1st instance of program)"
);
...
...
@@ -275,8 +262,8 @@ static void IPCHelperThread( vlc_object_t *p_this )
MSG
message
;
ipcwindow
=
CreateWindow
(
_T
(
"STATIC"
),
/* name of window class */
_T
(
"VLC ipc "
)
_T
(
VERSION
),
/* window title bar text */
CreateWindow
(
L"STATIC"
,
/* name of window class */
L"VLC ipc "
VERSION
,
/* window title bar text */
0
,
/* window style */
0
,
/* default X coordinate */
0
,
/* default Y coordinate */
...
...
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