Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 999 Bytes

mmioClose.md

File metadata and controls

50 lines (36 loc) · 999 Bytes

Home

Function name : mmioClose

Group: Windows Multimedia - Library: winmm


The mmioClose function closes a file that was opened by using the mmioOpen function.


Code examples:

WAV file player
Class for sound recording
Changing pitch and speed of a wave file
Adding supplementary data to AVI files
Playing WAV sounds simultaneously

Declaration:

MMRESULT mmioClose(
  HMMIO hmmio,
  UINT wFlags
);  

FoxPro declaration:

DECLARE INTEGER mmioClose IN winmm;
	INTEGER hmmio,;
	INTEGER wFlags  

Parameters:

hmmio File handle of the file to close.

wFlags Flags for the close operation.


Return value:

Returns zero if successful or an error otherwise.