mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
This is from official repo (SVN rev. 300) Additionally includes free implementation of stdint.h and dirent.h for VC++, aswell as Visual Studio project files. Special thanks to faramir118 for Windows support.
57 lines
2.2 KiB
Groff
57 lines
2.2 KiB
Groff
.\" Copyright (c) 2003-2008 Maik Broemme <mbroemme@plusserver.de>
|
|
.\"
|
|
.\" This is free documentation; you can redistribute it and/or
|
|
.\" modify it under the terms of the GNU General Public License as
|
|
.\" published by the Free Software Foundation; either version 2 of
|
|
.\" the License, or (at your option) any later version.
|
|
.\"
|
|
.\" The GNU General Public License's references to "object code"
|
|
.\" and "executables" are to be interpreted as the output of any
|
|
.\" document formatting or typesetting system, including
|
|
.\" intermediate and printed output.
|
|
.\"
|
|
.\" This manual is distributed in the hope that it will be useful,
|
|
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
.\" GNU General Public License for more details.
|
|
.\"
|
|
.\" You should have received a copy of the GNU General Public
|
|
.\" License along with this manual; if not, write to the Free
|
|
.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
|
|
.\" USA.
|
|
.TH libmpq 3 2008-04-29 "The MoPaQ archive library"
|
|
.SH NAME
|
|
libmpq \- cross-platform C library for manipulating mpq archives.
|
|
.SH SYNOPSIS
|
|
.nf
|
|
.B
|
|
#include <mpq.h>
|
|
.sp
|
|
.BI "int32_t libmpq__archive_close("
|
|
.BI " mpq_archive_s *" "mpq_archive"
|
|
.BI ");"
|
|
.fi
|
|
.SH DESCRIPTION
|
|
.PP
|
|
Call \fBlibmpq__archive_close\fP() to close a mpq archive which was opened by \fBlibmpq__archive_open\fP(). The function frees the archive structure itself and the contents of it.
|
|
.LP
|
|
The \fBlibmpq__archive_close\fP() function one takes one argument of the archive structure \fImpq_archive\fP which has to be set by \fBlibmpq__archive_open\fP.
|
|
.SH RETURN VALUE
|
|
On success, a zero is returned and on error one of the following constants.
|
|
.TP
|
|
.B LIBMPQ_ERROR_CLOSE
|
|
The given file could not be closed.
|
|
.SH SEE ALSO
|
|
.BR libmpq__archive_open (3),
|
|
.BR libmpq__archive_packed_size (3),
|
|
.BR libmpq__archive_unpacked_size (3),
|
|
.BR libmpq__archive_offset (3),
|
|
.BR libmpq__archive_version (3),
|
|
.BR libmpq__archive_files (3)
|
|
.SH AUTHOR
|
|
Check documentation.
|
|
.TP
|
|
libmpq is (c) 2003-2008
|
|
.B Maik Broemme <mbroemme@plusserver.de>
|
|
.PP
|
|
The above e-mail address can be used to send bug reports, feedbacks or library enhancements.
|