From 2417729045087998840
X-Google-Language: ENGLISH,ASCII
X-Google-Thread: f78e5,4f89105f4a947ef2
X-Google-Attributes: gidf78e5,public
X-Google-ArrivalTime: 1995-03-20 01:43:52 PST
Path: bga.com!news.sprintlink.net!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!fstgds15.tu-graz.ac.at!usenet
From: "G�nter Nagler" <gnagler@ihm.tu-graz.ac.at>
Newsgroups: comp.std.c++
Subject: MIDI operations in MVC++
Date: 20 Mar 1995 09:05:31 GMT
Organization: Graz University of Technology, Austria
Lines: 45
Message-ID: <3kjggr$c5k@fstgds15.tu-graz.ac.at>
NNTP-Posting-Host: fiicm1pc21.tu-graz.ac.at
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable
To: temko@mathcs.emory.edu

You asked: 
>  
> Hello, all. 
>  
> If the answer to the following question is in a FAQ somewhere,   
could 
> someone please direct me towards it?  Also, any other   
literature on the 
> subject would be greatly helpful.  Thanks! 
>  
> I am trying to read from and write to a MIDI device with Visual   
C++.  I 
> am writing some educational music software and I want to be   
able 
> to play notes on my MIDI device and read notes that are played   
in by 
> a student to get answers to questions.  I cannot figure out how   
this 
> is done using MVC++ 1.0 (Standard Edition).  If someone could   
describe to 
> me the function calls, or macros, or however it is I can do   
this I 
> would be most grateful.  If I need some supplemental library, I   
need 
> to know that too so I can go out and get it. 
>  
 
Have a look into include/mmsystem.h 
There are many functions that support midi 
 
for example: 
low level functions as: midiOutShortMsg()  
high level functions as: mciSendString("play ...") 
                         mciSendCommand(...) 
 
good luck, G=FCnter Nagler 
----------------------------------------------------------------- 
Dipl.-Ing. Guenter Nagler, Institut fuer HyperMedia Systeme   
(IHM), 
JOANNEUM RESEARCH Forschungsgesellschaft 
Schieszstattgasse 4A, A-8010 Graz, Austria 
Tel: ++43 316 832551-32, Fax: ++43 316 824394 
email: gnagler@ihm.tu-graz.ac.at 




