Súbor: [Platon] / games / _shared / standart-win32.c (stiahnutie)
Revízia 1.4, Tue Apr 6 09:54:16 2004 UTC (20 years, 9 months ago) by nepto
Zmeny od 1.3: +12 -5
[lines]
Headers update:
- switch to standard/classic Platon SDG source header
- bumped copyright year to 2004
- changelog dates reformatted to new format YYYY-MM-DD
|
/*
* games/_shared/ - shared routines for games
*
* standart-win32.c - standard MS-Windows subroutines library
* ____________________________________________________________
*
* Developed by Ondrej Jombik <nepto@platon.sk>
* Copyright (c) 2003-2004 Platon SDG, http://platon.sk/
* All rights reserved.
*
* See README file for more information about this software.
* See COPYING file for license information.
*
* Download the latest version from
* http://platon.sk/projects/games/
*
* Changelog:
* 2003-06-23 - created
*/
/* $Platon: games/_shared/standart-win32.c,v 1.3 2004/01/01 16:03:36 nepto Exp $ */
/* NOTE: incorrect "standart" word in filename is kept
from historical reasons; correct word is "standard" */
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <winbgim.h> /* delay() */
#include "standart.h"
/* IMPLEMENTATION */
#include "stshared.c"
void wait(double sec)
{
delay(sec * 1000);
}
/* Modeline for ViM {{{
* vim: set ts=4:
* vim600: fdm=marker fdl=0 fdc=0:
* }}} */
Platon Group <platon@platon.sk> http://platon.sk/
|