view src/dmmutex.h @ 1315:7687412f9aef

Fix jssmod sample conversion flags storing .. urgh.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 20 Aug 2017 01:54:54 +0300
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;
}