Merge pull request #43 from rofl0r/fix271b11

a2091.c: export some functions which are now used from cdtv.c
This commit is contained in:
Mustafa TUFAN 2014-03-23 04:26:30 +02:00
commit d29250fdbb
3 changed files with 5 additions and 5 deletions

View File

@ -251,14 +251,14 @@ static void INT2 (void)
uae_int_requested |= 2;
}
static void scsi_dmac_start_dma (void)
void scsi_dmac_start_dma (void)
{
#if A3000_DEBUG > 0 || A2091_DEBUG > 0
write_log (_T("DMAC DMA started, ADDR=%08X, LEN=%08X words\n"), dmac_acr, dmac_wtc);
#endif
dmac_dma = 1;
}
static void scsi_dmac_stop_dma (void)
void scsi_dmac_stop_dma (void)
{
dmac_dma = 0;
dmac_istr &= ~ISTR_E_INT;
@ -1657,7 +1657,7 @@ static void *scsi_thread (void *null)
return 0;
}
static void init_scsi (void)
void init_scsi (void)
{
if (!scsi_thread_running) {
scsi_thread_running = 1;

View File

@ -92,7 +92,7 @@ extern int isvsync_chipset (void);
extern int isvsync_rtg (void);
void getgfxoffset (int *dxp, int *dyp, int *mxp, int *myp)
void getgfxoffset (float *dxp, float *dyp, float *mxp, float *myp)
{
*dxp = 0;
*dyp = 0;

View File

@ -10,7 +10,7 @@
* Copyright 2010-2013 Mustafa TUFAN
*/
void getgfxoffset (int *dxp, int *dyp, int *mxp, int *myp);
void getgfxoffset (float *dxp, float *dyp, float *mxp, float *myp);
int isfullscreen (void);
void fetch_configurationpath (TCHAR *out, int size);
TCHAR* buf_out (TCHAR *buffer, int *bufsize, const TCHAR *format, ...);