Return-Path: X-Original-To: apmail-corinthia-commits-archive@minotaur.apache.org Delivered-To: apmail-corinthia-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 545B4102E2 for ; Thu, 1 Jan 2015 10:10:44 +0000 (UTC) Received: (qmail 95578 invoked by uid 500); 1 Jan 2015 10:10:44 -0000 Delivered-To: apmail-corinthia-commits-archive@corinthia.apache.org Received: (qmail 95561 invoked by uid 500); 1 Jan 2015 10:10:44 -0000 Mailing-List: contact commits-help@corinthia.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@corinthia.incubator.apache.org Delivered-To: mailing list commits@corinthia.incubator.apache.org Received: (qmail 95551 invoked by uid 99); 1 Jan 2015 10:10:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jan 2015 10:10:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 01 Jan 2015 10:10:43 +0000 Received: (qmail 95493 invoked by uid 99); 1 Jan 2015 10:10:23 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jan 2015 10:10:23 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 93421A3BB6D; Thu, 1 Jan 2015 10:10:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jani@apache.org To: commits@corinthia.incubator.apache.org Date: Thu, 01 Jan 2015 10:10:25 -0000 Message-Id: <0708ad76e51742668d0aaee5d9bdfd6a@git.apache.org> In-Reply-To: <061b1e96cdd646b1b47607d0fe2e5573@git.apache.org> References: <061b1e96cdd646b1b47607d0fe2e5573@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [03/19] incubator-corinthia git commit: work X-Virus-Checked: Checked by ClamAV on apache.org work Project: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/commit/8c2b64a2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/tree/8c2b64a2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/diff/8c2b64a2 Branch: refs/heads/RTC_platform Commit: 8c2b64a283def3c77b5c243d7041c1c78bbefe64 Parents: 8d2865f Author: jani Authored: Sat Dec 27 21:28:28 2014 +0100 Committer: jani Committed: Sat Dec 27 21:28:28 2014 +0100 ---------------------------------------------------------------------- DocFormats/platform/headers/DFPlatform.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8c2b64a2/DocFormats/platform/headers/DFPlatform.h ---------------------------------------------------------------------- diff --git a/DocFormats/platform/headers/DFPlatform.h b/DocFormats/platform/headers/DFPlatform.h index e53b4b1..577fcff 100755 --- a/DocFormats/platform/headers/DFPlatform.h +++ b/DocFormats/platform/headers/DFPlatform.h @@ -35,7 +35,8 @@ typedef void (*DFOnceFunction)(void); void DFInitOnce(DFOnce *once, DFOnceFunction fun); // Zip functions -int DFextZipOpen(const char *zipFilename); +int DFextZipOpenRead(const char *zipFilename); +int DFextZipOpenCreate(const char *zipFilename); int DFextZipOpenNextFile(const char *zipFile, char *entryName, const int maxName); int DFextZipReadCurrentFile(char *buf, const int maxLen); int DFextZipClose(void);