File: sge_misc.h

package info (click to toggle)
ruby-sdl 2.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,344 kB
  • ctags: 4,200
  • sloc: cpp: 7,598; ansic: 4,475; ruby: 2,258; sh: 102; makefile: 97
file content (37 lines) | stat: -rw-r--r-- 945 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
*	SDL Graphics Extension
*	Misc functions (header)
*
*	Started 990819
*
*	License: LGPL v2+ (see the file LICENSE)
*	(c)1999-2003 Anders Lindstrm
*/

/*********************************************************************
 *  This library is free software; you can redistribute it and/or    *
 *  modify it under the terms of the GNU Library General Public      *
 *  License as published by the Free Software Foundation; either     *
 *  version 2 of the License, or (at your option) any later version. *
 *********************************************************************/

#ifndef sge_misc_H
#define sge_misc_H

#include "SDL.h"
#include "sge_internal.h"

#ifdef _SGE_C
extern "C" {
#endif
DECLSPEC int sge_Random(int min, int max);
DECLSPEC void sge_Randomize(void);

DECLSPEC Uint32 sge_CalibrateDelay(void);
DECLSPEC Uint32 sge_DelayRes(void);
DECLSPEC Uint32 sge_Delay(Uint32 ticks);
#ifdef _SGE_C
}
#endif

#endif /* sge_misc_H */