view src/dmmutex.h @ 1215:66c79bae8704

Bump up some maximum values for JSS module data.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 05 Mar 2015 23:14:15 +0200
parents 1e5cf1144f36
children a9516570cc26
line wrap: on
line source

/*
 * DMLib
 * -- Bogus implementations of SDL mutex functions
 * Programmed and designed by Matti 'ccr' Hamalainen
 * (C) Copyright 2012 Tecnic Software productions (TNSP)
 */

Uint32 SDL_ThreadID()
{
    return 0;
}

int SDL_mutexP(SDL_mutex *p)
{
    (void) p;
    return 0;
}

int SDL_mutexV(SDL_mutex *p)
{
    (void) p;
    return 0;
}

SDL_mutex * SDL_CreateMutex()
{
    return NULL;
}

void SDL_DestroyMutex(SDL_mutex *p)
{
    (void) p;
}