diff options
author | Thomas Heller <theller@ctypes.org> | 2002-12-12 19:35:00 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2002-12-12 19:35:00 (GMT) |
commit | 63b4dd33c99bcad84fb928f874c133968d784632 (patch) | |
tree | b9f5faf586e84b41df5124abcaab74802b891d6f /Doc/dist/dist.tex | |
parent | e54710bd726fdc6ea46e7fbd1f153a92dc43f2b6 (diff) | |
download | cpython-63b4dd33c99bcad84fb928f874c133968d784632.zip cpython-63b4dd33c99bcad84fb928f874c133968d784632.tar.gz cpython-63b4dd33c99bcad84fb928f874c133968d784632.tar.bz2 |
Description of description was really confusing, and added some markup.
Diffstat (limited to 'Doc/dist/dist.tex')
-rw-r--r-- | Doc/dist/dist.tex | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index 75cee48..0ad5d2d 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -1376,7 +1376,7 @@ If the folder cannot be retrieved, OSError is raised. Which folders are available depends on the exact Windows version, and probably also the configuration. For details refer to Microsoft's documentation of the -SHGetSpecialFolderPath function. +\code{SHGetSpecialFolderPath} function. \begin{verbatim} create_shortcut(target, description, filename[, arguments[, @@ -1384,15 +1384,15 @@ create_shortcut(target, description, filename[, arguments[, \end{verbatim} This function creates a shortcut. -target is the path to the program to be started by the shortcut. -description is displayed in a popup window when the -filename is the title of the shortcut that the user will see. -arguments specifies the command line arguments, if any. -workdir is the working directory for the program. -iconpath is the file containing the icon for the shortcut, -and iconindex is the iconindex in the file. -Again, for details consult the Microsoft documentation for the IShellLink -interface. +\var{target} is the path to the program to be started by the shortcut. +\var{description} is the description of the sortcut. +\var{filename} is the title of the shortcut that the user will see. +\var{arguments} specifies the command line arguments, if any. +\var{workdir} is the working directory for the program. +\var{iconpath} is the file containing the icon for the shortcut, +and \var{iconindex} is the index of the icon in the file +\var{iconpath}. Again, for details consult the Microsoft +documentation for the \code{IShellLink} interface. \section{Examples} \label{examples} |