Module: wine Branch: master Commit: 621230fdc211ea3856440af50a9cb4e9a6a4e658 URL: http://source.winehq.org/git/wine.git/?a=commit;h=621230fdc211ea3856440af50a...
Author: Francois Gouget fgouget@free.fr Date: Mon Oct 26 09:28:52 2009 +0100
mmsystem.dll16: Make MMSYSTEM_MMTIME16to32() static.
---
dlls/mmsystem.dll16/mmsystem.c | 2 +- dlls/mmsystem.dll16/winemm16.h | 1 - 2 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/mmsystem.dll16/mmsystem.c b/dlls/mmsystem.dll16/mmsystem.c index b07629b..94bb85f 100644 --- a/dlls/mmsystem.dll16/mmsystem.c +++ b/dlls/mmsystem.dll16/mmsystem.c @@ -108,7 +108,7 @@ void MMSYSTEM_MMTIME32to16(LPMMTIME16 mmt16, const MMTIME* mmt32) * * */ -void MMSYSTEM_MMTIME16to32(LPMMTIME mmt32, const MMTIME16* mmt16) +static void MMSYSTEM_MMTIME16to32(LPMMTIME mmt32, const MMTIME16* mmt16) { mmt32->wType = mmt16->wType; /* layout of rest is the same for 32/16, diff --git a/dlls/mmsystem.dll16/winemm16.h b/dlls/mmsystem.dll16/winemm16.h index 2435e90..e8cad53 100644 --- a/dlls/mmsystem.dll16/winemm16.h +++ b/dlls/mmsystem.dll16/winemm16.h @@ -24,7 +24,6 @@
/* mmsystem (16 bit files) only functions */ void MMDRV_Init16(void); -void MMSYSTEM_MMTIME16to32(LPMMTIME mmt32, const MMTIME16* mmt16); void MMSYSTEM_MMTIME32to16(LPMMTIME16 mmt16, const MMTIME* mmt32);
typedef LONG (*MCIPROC16)(DWORD, HDRVR16, WORD, DWORD, DWORD);