代码搜索:MIDI
找到约 3,914 项符合「MIDI」的源代码
代码结果 3,914
www.eeworm.com/read/183991/9127036
inc midi.inc
is_input:
push edx
mov dx,word [midisp]
in al,dx
and al,0x80
pop edx
ret
is_output:
push edx
mov dx,word [midisp]
in al,dx
and al,0x40
pop
www.eeworm.com/read/177731/9434521
cpp midi.cpp
// Midi.cpp
#include "stdafx.h"
#include "Midi.h"
CMidi::CMidi()
{
m_nDevices = midiOutGetNumDevs();
m_bOpened = m_bPaused = m_bPlaying = FALSE;
m_wDeviceID = 0;
}
CMidi::~CMidi(
www.eeworm.com/read/177731/9434557
h midi.h
// Midi.h
#ifndef __MIDI_H__
#define __MIDI_H__
#include
class CMidi
{
public:
CMidi();
~CMidi();
int DeviceCount( void );
BOOL Open( const char * );
BOOL Clos
www.eeworm.com/read/373375/9459265
h midi.h
#ifndef __MIDI_H__
#define __MIDI_H__
extern UINT DeviceID;
extern int MciSend (UINT DeviceID, UINT wMessage, DWORD dwParam1, DWORD dwParam2);
extern UINT OpenMidi (HWND hwnd, char * FileName,
www.eeworm.com/read/373375/9459603
cpp midi.cpp
#include "StdAfx.h"
#include
#include
#define __MIDI_H__
#include "midi.h"
#include "Tool.h"
#include "Hong_Sub.h"
/*ΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑΑ
MCI
www.eeworm.com/read/370906/9575968
cpp midi.cpp
// Midi.cpp
#include "stdafx.h"
#include "Midi.h"
CMidi::CMidi()
{
m_nDevices = midiOutGetNumDevs();
m_bOpened = m_bPaused = m_bPlaying = FALSE;
m_wDeviceID = 0;
}
CMidi::~CMidi(
www.eeworm.com/read/370906/9576002
h midi.h
// Midi.h
#ifndef __MIDI_H__
#define __MIDI_H__
#include
class CMidi
{
public:
CMidi();
~CMidi();
int DeviceCount( void );
BOOL Open( const char * );
BOOL Clos
www.eeworm.com/read/365556/9855758
ico midi.ico
www.eeworm.com/read/167396/9969855