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
11a86fba
Commit
11a86fba
authored
Nov 15, 2003
by
ipkiss
Browse files
Small fix in a preference description string
parent
306a32f9
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/control/ntservice.c
View file @
11a86fba
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* ntservice.c: Windows NT/2K/XP service interface
* ntservice.c: Windows NT/2K/XP service interface
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: ntservice.c,v 1.
2
2003/
08
/1
4
1
1:47:32 gbazin
Exp $
* $Id: ntservice.c,v 1.
3
2003/
11
/1
5
1
0:38:01 ipkiss
Exp $
*
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
*
...
@@ -55,10 +55,14 @@ static void Close ( vlc_object_t * );
...
@@ -55,10 +55,14 @@ static void Close ( vlc_object_t * );
vlc_module_begin
();
vlc_module_begin
();
set_description
(
_
(
"Windows NT/2K/XP service interface"
)
);
set_description
(
_
(
"Windows NT/2K/XP service interface"
)
);
add_category_hint
(
N_
(
"NT service"
),
NULL
,
VLC_TRUE
);
add_category_hint
(
N_
(
"NT service"
),
NULL
,
VLC_TRUE
);
add_bool
(
"ntservice-install"
,
0
,
NULL
,
INSTALL_TEXT
,
INSTALL_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"ntservice-install"
,
0
,
NULL
,
add_bool
(
"ntservice-uninstall"
,
0
,
NULL
,
INSTALL_TEXT
,
INSTALL_LONGTEXT
,
VLC_TRUE
);
INSTALL_TEXT
,
INSTALL_LONGTEXT
,
VLC_TRUE
);
add_string
(
"ntservice-name"
,
VLCSERVICENAME
,
NULL
,
NAME_TEXT
,
NAME_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"ntservice-uninstall"
,
0
,
NULL
,
add_string
(
"ntservice-extraintf"
,
NULL
,
NULL
,
EXTRAINTF_TEXT
,
EXTRAINTF_LONGTEXT
,
VLC_TRUE
);
UNINSTALL_TEXT
,
UNINSTALL_LONGTEXT
,
VLC_TRUE
);
add_string
(
"ntservice-name"
,
VLCSERVICENAME
,
NULL
,
NAME_TEXT
,
NAME_LONGTEXT
,
VLC_TRUE
);
add_string
(
"ntservice-extraintf"
,
NULL
,
NULL
,
EXTRAINTF_TEXT
,
EXTRAINTF_LONGTEXT
,
VLC_TRUE
);
set_capability
(
"interface"
,
0
);
set_capability
(
"interface"
,
0
);
set_callbacks
(
Activate
,
Close
);
set_callbacks
(
Activate
,
Close
);
...
...
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