misc/libphyslayer/physfslualoader.c
author koda
Sat, 20 Apr 2013 20:39:01 +0200
branch0.9.19
changeset 8928 10a79d89ca31
parent 8524 a65e9bcf0a03
child 9991 3858d99476f5
permissions -rw-r--r--
expose a hidden function that prevented linking on osx 10.4 when compiling physfs statically

#include "lua.h"
#include "physfs.h"

#define BUFSIZE 1024

void *physfsReaderBuffer;

PHYSFS_DECL const char * physfsReader(lua_State *L, PHYSFS_File *f, size_t *size)
{

    if(PHYSFS_eof(f))
    {
        return NULL;
    }
    else
    {
        *size = PHYSFS_readBytes(f, physfsReaderBuffer, BUFSIZE);

        if(*size == 0)
            return NULL;
        else
            return physfsReaderBuffer;
    }
}

PHYSFS_DECL void physfsReaderSetBuffer(void *buffer)
{
    physfsReaderBuffer = buffer;
}