Update CLion scope for 3rd party.
[SquirrelJME.git] / nanocoat / src / zip.c
blobb49a0b1af413912c802aa2bfc8051873c39ddb43
1 /* -*- Mode: C; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // -------------------------------------------------------------------------*/
10 #include "sjme/zip.h"
11 #include "sjme/debug.h"
13 sjme_errorCode sjme_zip_close(
14 sjme_attrInNotNull sjme_zip inZip)
16 sjme_todo("Implement this?");
17 return SJME_ERROR_NOT_IMPLEMENTED;
20 sjme_errorCode sjme_zip_entryRead(
21 sjme_attrInNotNull sjme_zip_entry inEntry,
22 sjme_attrOutNotNull sjme_stream_input* outStream)
24 sjme_todo("Implement this?");
25 return SJME_ERROR_NOT_IMPLEMENTED;
28 sjme_errorCode sjme_zip_locateEntry(
29 sjme_attrInNotNull sjme_zip inZip,
30 sjme_attrOutNotNull sjme_zip_entry* outEntry,
31 sjme_attrInNotNull sjme_lpcstr entryName)
33 sjme_todo("Implement this?");
34 return SJME_ERROR_NOT_IMPLEMENTED;
37 sjme_errorCode sjme_zip_open(
38 sjme_attrInNotNull sjme_alloc_pool* inPool,
39 sjme_attrOutNotNull sjme_zip* outZip,
40 sjme_attrInNotNull void* rawData,
41 sjme_attrInPositive sjme_jint rawSize)
43 sjme_todo("Implement this?");
44 return SJME_ERROR_NOT_IMPLEMENTED;