Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f30fa2f4
Commit
f30fa2f4
authored
Nov 20, 2010
by
Austin English
Committed by
Alexandre Julliard
Nov 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regsvr32: Add a manpage.
parent
ac0f1310
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
0 deletions
+33
-0
.gitignore
.gitignore
+1
-0
Makefile.in
programs/regsvr32/Makefile.in
+12
-0
regsvr32.man.in
programs/regsvr32/regsvr32.man.in
+20
-0
No files found.
.gitignore
View file @
f30fa2f4
...
...
@@ -262,6 +262,7 @@ loader/wine64
programs/Makeprog.rules
programs/msiexec/msiexec.man
programs/notepad/notepad.man
programs/regsvr32/regsvr32.man
programs/rpcss/epm.h
programs/rpcss/epm_s.c
programs/rpcss/irot.h
...
...
programs/regsvr32/Makefile.in
View file @
f30fa2f4
...
...
@@ -8,4 +8,16 @@ C_SRCS = \
RC_SRCS
=
regsvr32.rc
MANPAGES
=
regsvr32.man
@MAKE_PROG_RULES@
all
:
$(MANPAGES)
install-man-pages
::
$(MANPAGES) $(DESTDIR)$(mandir)/man$(prog_manext)
$(INSTALL_DATA)
regsvr32.man
$(DESTDIR)$(mandir)
/man
$(prog_manext)
/regsvr32.
$(prog_manext)
@WOW64_DISABLE@ install install-lib
::
install-man-pages
uninstall
::
$(RM)
$(DESTDIR)$(mandir)
/man
$(prog_manext)
/regsvr32.
$(prog_manext)
programs/regsvr32/regsvr32.man.in
0 → 100644
View file @
f30fa2f4
.TH REGSVR32 1 "November 2010" "@PACKAGE_STRING@" "Wine Programs"
.SH NAME
regsvr32 \- Wine DLL Registration Server
.SH SYNOPSIS
.BR "regsvr32 [/u] [/s] [/n] [/i [:cmdline]] dllname"
.SH DESCRIPTION
.B regsvr32
is the Wine dll registration server, designed to be compatible with its Microsoft Windows counterpart.
By default, it will register the given dll.
.SH COMMANDS
.IP "\fl/u dllname\fR"
Unregister the specified dll.
.IP "\fl/s\fR"
Run regsvr32 silently (will not show any GUI dialogs).
.IP "\fl/i\fR"
Call DllInstall passing it an optional [cmdline]. When used with /u calls DllUninstall.
.IP "\fl/n\fR"
Do not call DllRegisterServer; this option must be used with [/i].
.SH "SEE ALSO"
.BR wine(1)
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