blob: 392104a6a1e53750b444c0adf5b2c0324a6d0b42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//<>< (C) 2016-2017 C. N. Lohr, MOSTLY Under MIT/x11 License.
//
#ifndef _SURVIVE_INTERNAL_H
#define _SURVIVE_INTERNAL_H
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <zlib.h>
#include <survive.h>
//Driver registration
#define MAX_DRIVERS 32
void * GetDriver( const char * name );
const char * GetDriverNameMatching( const char * prefix, int place );
void ListDrivers();
#endif
|