por su comundad...
Mi Duda es la siguiente acabo de escribir este codigo
que deberia abrir la bandeja de CDs al ejecutarse
Código:
#include <windows.h>
#include <stdio.h>
typedef long (*AbrirCD)(LPCTSTR ,LPTSTR ,UINT,HANDLE);
int main()
{
long lpRe;
AbrirCD _AbrirCD = (AbrirCD)GetProcAddress(LoadLibrary("winmm.dll") ,"mciSendString");
lpRe= _AbrirCD("Set CDAudio Door Open Wait" , NULL , 0 ,NULL);
if(lpRe != 0)
printf("Bandeja Abierta Correctamente");
else
printf("Error AbriendoBandeja");
return 0;
}
Pero por alguna razon me tira error al ejecutarse( No al Compilarlo
Estoy Con Code::Blocks + GCC , bajo windows 7.....
Gracias de Antemano....