You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
57 lines
1.1 KiB
/* Extended Module Player |
|
* Copyright (C) 1996-2012 Claudio Matsuoka and Hipolito Carraro Jr |
|
* |
|
* This file is part of the Extended Module Player and is distributed |
|
* under the terms of the GNU General Public License. See doc/COPYING |
|
* for more information. |
|
*/ |
|
|
|
#ifdef HAVE_CONFIG_H |
|
#include "config.h" |
|
#endif |
|
|
|
#include <string.h> |
|
#include <stdlib.h> |
|
#include "common.h" |
|
#include "driver.h" |
|
|
|
static void starttimer(void); |
|
static void stoptimer(void); |
|
static void bufdump(void); |
|
static int init(struct context_data *ctx); |
|
static void shutdown(struct context_data *); |
|
|
|
struct xmp_drv_info drv_debug = { |
|
"debug", /* driver ID */ |
|
"Driver debugger", /* driver description */ |
|
NULL, /* help */ |
|
init, /* init */ |
|
shutdown, /* shutdown */ |
|
starttimer, /* settimer */ |
|
stoptimer, /* stoptimer */ |
|
bufdump, /* bufdump */ |
|
}; |
|
|
|
static void starttimer() |
|
{ |
|
printf("** starttimer\n"); |
|
} |
|
|
|
static void stoptimer() |
|
{ |
|
printf("** stoptimer\n"); |
|
} |
|
|
|
static void bufdump() |
|
{ |
|
} |
|
|
|
static int init(struct context_data *ctx) |
|
{ |
|
return 0; |
|
} |
|
|
|
static void shutdown(struct context_data *ctx) |
|
{ |
|
printf("** shutdown\n"); |
|
}
|
|
|