mmsystem.dll16: Make MMSYSTEM_MMTIME16to32() static.

This commit is contained in:
Francois Gouget 2009-10-26 09:28:52 +01:00 committed by Alexandre Julliard
parent 959ced4e3c
commit 621230fdc2
2 changed files with 1 additions and 2 deletions

View File

@ -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,

View File

@ -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);