Zum Inhalt springen

vc++ cd-rom schublade öffnen


HELLmut

Empfohlene Beiträge

habs selber nicht compiliert, aber versuchs halt mal:

#include <windows.h>

#include <stdio.h>

#include <winuser.h>

#include <mmsystem.h>

#include <iostream.h>

bool DoOpenCdRom(void);

bool DoCloseCdRom(void); // Prototypen

int main()

{

bool rc;

char ch;

cout << "Oeffne das Laufwerk..." << endl;

rc = DoOpenCdRom();

anfang:;

printf("Zum Schliessen s druecken: ");

ch=getchar();

printf("\n");

if(ch=='s')

{

cout << "Schliesse es wieder..." << endl;

rc = DoCloseCdRom();

}

else

goto anfang;

}

bool DoOpenCdRom(void)

{

char chrRc[256];

char *ptrChrRc = &chrRc[0];

return mciSendString("Set CDAudio Door Open\0",ptrChrRc,256,NULL);

}

bool DoCloseCdRom(void)

{

char chrRc[256];

char *ptrChrRc = &chrRc[0];

return mciSendString("Set CDAudio Door Closed\0",ptrChrRc,256,NULL);

}

Link zu diesem Kommentar
Auf anderen Seiten teilen

Gast
Dieses Thema wurde nun für weitere Antworten gesperrt.

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...