Salut,
J'ai cherché et j'ai trouvé le code suivant :
MCI_STATUS_PARMS Info;
ZeroMemory(&Info, sizeof(Info));
Info.dwItem = MCI_STATUS_MEDIA_PRESENT;
mciSendCommand(mci_cd_device, MCI_STATUS, MCI_STATUS_ITEM,
DWORD(&Info));
if(!Info.dwReturn)
MessageBox(NULL, "Pas de CD détecté !", "", MB_OK);
else
MessageBox(NULL, "C bon y'a un cd ", "", MB_OK);
Mais je trouve pas ou on defini quel lecteur il doit tester .
Je pense que c'est la variable mci_cd_device mais je ne sais po comment lui dire .
Merci