wine/documentation
2000-05-23 01:17:10 +00:00
..
samples Default system.ini (from documentation/status/multimedia). 2000-04-08 20:19:51 +00:00
status - Small fixes/updates 2000-05-23 01:16:36 +00:00
.cvsignore Ignore all output files. 2000-04-11 20:07:48 +00:00
accelerators
aspi
bugreports Regression testing using CVS. 2000-05-23 01:17:10 +00:00
cdrom-labels - support for reading labels and serial nums from device 2000-01-29 21:11:47 +00:00
ChangeLog.OLD
common_controls
config
console
debug-msgs
debugging
distributors Added a configuration hint for the CD-ROM "unhide" option. 2000-05-05 18:15:34 +00:00
dlls
filehandles
fonts Include in the AddFontResourceA/W fixme message a pointer to the fonts 2000-03-07 12:24:26 +00:00
gui
how-to-port
internal-dll
internals
ioport-trace-hints
keyboard
languages
linux-fat-permissions Added a document that describes configuring FAT filesystem permissions 1999-12-25 22:50:21 +00:00
Makefile.in Improved support for Makefiles that need to recurse in subdirectories. 2000-04-09 18:19:59 +00:00
no-windows Add start menu directories. 2000-03-28 19:24:09 +00:00
printing Move PostScript driver docs to documentation/ . Add instructions on 1999-11-13 20:55:31 +00:00
programs
psdriver Fix docs to reflect change to .winerc processing. 2000-03-04 19:16:34 +00:00
psdrv.reg Move PostScript driver docs to documentation/ . Add instructions on 1999-11-13 20:55:31 +00:00
README.documentation
resources Added .rc file support for Win16 NE modules. 1999-12-06 01:20:00 +00:00
shell32 Updated. 2000-02-26 18:37:11 +00:00
ttfserver
win95look
wine.conf.man.in Save the registry on server exit without client intervention. 2000-04-16 17:21:13 +00:00
wine.man.in Got rid of -debug wine's option (wine now requires an external debugger). 2000-04-13 19:29:11 +00:00
wine.texinfo
wine_os2
winedbg A bit of documentation on new debugging features. 2000-05-23 01:15:25 +00:00
winsock

			Wine Documentation README


Wine Man Page

  The man page for Wine is in this directory. It is installed by 'make
install'.

Wine Reference Manual

  Texinfo source for preliminary comprehensive documentation is in
this directory.  Use 'make info' in this directory to generate the GNU
info version, 'make dvi' to generate the DVI version (hit 'r' to
ignore errors), or 'make all' for both. It is not installed by
default.

Wine API documentation

  Do a 'make manpages' in the Wine toplevel directory to generate the
API manpages from the Wine source, or 'make man' in any source
subdirectory to generate manpages from only that directory. Only
functions mentioned in Wine spec files will be documented; the
specific .spec files checked are set by the MANSPECS variable in
Make.rules. The manpages will be generated into
[documentation/man3w]. For HTML formatted manpages, do 'make
htmlpages' from the toplevel, or 'make html' from any
subdirectory. HTML formatted pages are generated into
[documentation/html]. You will need c2man as modified for Wine,
available as source or binary from ftp://ftp.winehq.com/pub/wine/.
The man pages are not installed by 'make install'.

Other READMEs

  Other informational files are in this directory as well as scattered
through the source tree.

Other resources:

  Usenet: news:comp.emulators.ms-windows.wine
  WWW:    http://www.winehq.com/


Writing Wine API Documentation

To improve the documentation of the Wine API, just add comments to the
existing source. For example,

/******************************************************************
 *         CopyMetaFile32A   (GDI32.23)
 *
 *  Copies the metafile corresponding to hSrcMetaFile to either
 *  a disk file, if a filename is given, or to a new memory based
 *  metafile, if lpFileName is NULL.
 *
 * RETURNS
 *
 *  Handle to metafile copy on success, NULL on failure.
 *
 * BUGS
 *
 *  Copying to disk returns NULL even if successful.
 */
HMETAFILE32 WINAPI CopyMetaFile32A(
		   HMETAFILE32 hSrcMetaFile, /* handle of metafile to copy */
		   LPCSTR lpFilename /* filename if copying to a file */
) { ... }

becomes, after processing with c2man and nroff -man,

CopyMetaFileA(3w)                               CopyMetaFileA(3w)


NAME
       CopyMetaFileA - CopyMetaFile32A   (GDI32.23)

SYNOPSIS
       HMETAFILE32 CopyMetaFileA
       (
            HMETAFILE32 hSrcMetaFile,
            LPCSTR lpFilename
       );

PARAMETERS
       HMETAFILE32 hSrcMetaFile
              Handle of metafile to copy.

       LPCSTR lpFilename
              Filename if copying to a file.

DESCRIPTION
       Copies  the  metafile  corresponding  to  hSrcMetaFile  to
       either a disk file, if a filename is given, or  to  a  new
       memory based metafile, if lpFileName is NULL.

RETURNS
       Handle to metafile copy on success, NULL on failure.

BUGS
       Copying to disk returns NULL even if successful.

SEE ALSO
       GetMetaFileA(3w),   GetMetaFileW(3w),   CopyMetaFileW(3w),
       PlayMetaFile(3w),  SetMetaFileBitsEx(3w),  GetMetaFileBit-
       sEx(3w)