From 7b57b24fdaf80b78dfec87cd86ad934946089f66 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Thu, 10 Dec 1998 10:47:26 +0000 Subject: [PATCH] Adapted to CreateSystemTimer interface change. --- graphics/dispdib.c | 2 +- graphics/vga.c | 4 ++-- include/miscemu.h | 2 +- include/vga.h | 2 +- loader/dos/module.c | 2 +- miscemu/instr.c | 2 +- msdos/dosmem.c | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/graphics/dispdib.c b/graphics/dispdib.c index e4df068abd..8432e9f8e1 100644 --- a/graphics/dispdib.c +++ b/graphics/dispdib.c @@ -66,7 +66,7 @@ static void DISPDIB_Show(LPBITMAPINFOHEADER lpbi,LPSTR lpBits,WORD uFlags) memcpy(surf,lpBits,Width); } - VGA_Poll(); + VGA_Poll(0); } /********************************************************************* diff --git a/graphics/vga.c b/graphics/vga.c index be4730d6e2..3f9480ebcc 100644 --- a/graphics/vga.c +++ b/graphics/vga.c @@ -50,7 +50,7 @@ int VGA_SetMode(unsigned Xres,unsigned Yres,unsigned Depth) vga_refresh=0; InitializeCriticalSection(&vga_crit); /* poll every 20ms (50fps should provide adequate responsiveness) */ - poll_timer = CreateSystemTimer( 20, (FARPROC16)VGA_Poll ); + poll_timer = CreateSystemTimer( 20, VGA_Poll ); } return 0; } @@ -120,7 +120,7 @@ void VGA_Unlock(void) lpddsurf->lpvtbl->fnUnlock(lpddsurf,sdesc.y.lpSurface); } -void VGA_Poll(void) +void VGA_Poll( WORD timer ) { char *dat; unsigned Pitch,Height,Width; diff --git a/include/miscemu.h b/include/miscemu.h index 90ef0bd939..9b2598b858 100644 --- a/include/miscemu.h +++ b/include/miscemu.h @@ -19,7 +19,7 @@ extern DWORD DOSMEM_ErrorCall; extern DWORD DOSMEM_ErrorBuffer; extern BOOL32 DOSMEM_Init(HMODULE16 hModule); -extern void DOSMEM_Tick(void); +extern void DOSMEM_Tick(WORD timer); extern WORD DOSMEM_AllocSelector(WORD); extern char * DOSMEM_MemoryBase(HMODULE16 hModule); extern LPVOID DOSMEM_GetBlock(HMODULE16 hModule, UINT32 size, UINT16* p); diff --git a/include/vga.h b/include/vga.h index 4cc3eefc5e..62e9aeb2b0 100644 --- a/include/vga.h +++ b/include/vga.h @@ -17,7 +17,7 @@ void VGA_SetPalette(PALETTEENTRY*pal,int start,int len); void VGA_SetQuadPalette(RGBQUAD*color,int start,int len); LPSTR VGA_Lock(unsigned*Pitch,unsigned*Height,unsigned*Width,unsigned*Depth); void VGA_Unlock(void); -void VGA_Poll(void); +void VGA_Poll(WORD timer); void VGA_ioport_out(WORD port, BYTE val); BYTE VGA_ioport_in(WORD port); diff --git a/loader/dos/module.c b/loader/dos/module.c index 78206cabd9..3d44412766 100644 --- a/loader/dos/module.c +++ b/loader/dos/module.c @@ -384,7 +384,7 @@ int MZ_InitTask( LPDOSTASK lpDosTask ) exit(1); } /* start simulated system 55Hz timer */ - lpDosTask->system_timer = CreateSystemTimer( 55, (FARPROC16)MZ_Tick ); + lpDosTask->system_timer = CreateSystemTimer( 55, MZ_Tick ); TRACE(module,"created 55Hz timer tick, handle=%d\n",lpDosTask->system_timer); return lpDosTask->hModule; } diff --git a/miscemu/instr.c b/miscemu/instr.c index 029d1de3d5..8539d07f7d 100644 --- a/miscemu/instr.c +++ b/miscemu/instr.c @@ -64,7 +64,7 @@ static BOOL32 INSTR_ReplaceSelector( SIGCONTEXT *context, WORD *sel ) { static WORD sys_timer = 0; if (!sys_timer) - sys_timer = CreateSystemTimer( 55, (FARPROC16)DOSMEM_Tick ); + sys_timer = CreateSystemTimer( 55, DOSMEM_Tick ); *sel = DOSMEM_BiosSeg; return TRUE; } diff --git a/msdos/dosmem.c b/msdos/dosmem.c index a9fa0882da..fc91bacb8b 100644 --- a/msdos/dosmem.c +++ b/msdos/dosmem.c @@ -363,7 +363,7 @@ BOOL32 DOSMEM_Init(HMODULE16 hModule) * * Increment the BIOS tick counter. Called by timer signal handler. */ -void DOSMEM_Tick(void) +void DOSMEM_Tick( WORD timer ) { if (pBiosData) pBiosData->Ticks++; } -- 2.32.0.93.g670b81a890