view src/dmmutex.h @ 2266:ecc17b2e129e

Add constants for "full" C64 screen dimensions, including the border regions. These are for future support of fullscreen image formats.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 17 Jun 2019 05:31:38 +0300
parents 5e5f75b45f8d
children
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)
 */
#ifndef DMMUTEX_H
#define DMMUTEX_H 1

SDL_threadID 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;
}

#endif