Systemwalker Operation Manager リファレンスマニュアル - UNIX/Windows(R)共通 - |
目次 索引 |
第17章 API情報 | > 17.4 アクション管理API【Windows版】 | > 17.4.1 アクション実行API |
音声停止API(Mp_StopSound)について説明します。
long Mp_StopSound (unsigned char *AppName, |
音声通知を停止します。
音声停止API(Mp_PlaySound)で指定した呼び出し元のアプリケーション名のアドレスを指定します。
Mp_PlaySound関数で返された値を指定します。0を指定した場合は、再生中の音声を停止します。
正常に要求を受け取った場合は、0を返します。0未満の場合はエラーとなります。
音声停止APIのプログラム例を以下に示します。
#include "f3crhxac.h" unsigned char *AppName = "音声通知API" ; // Mp_PlaySound()に指定したアプリ名 long handle = 1 ; // Mp_PlaySound()の戻り値 long lrc ; lrc = Mp_StopSound(AppName,handle) ; if ( lrc != 0 ) { /* エラー処理 */ } /* 正常終了 */
目次 索引 |