Page 1 of 1
Saber si una palicacion se ejecuta en el emulador
Posted: Mon Jan 28, 2008 11:57 am
by tsales
Amigos
¿Existe alguna funcion que indique si una aplicación se está ejecutando en el emulador?
Saludos
Posted: Mon Jan 28, 2008 12:33 pm
by tsales
Me respondo a mi mismo:
HB_FUNC(ISEMULATOR)
{
WCHAR wszMachineName[128];
SystemParametersInfo(SPI_GETOEMINFO, sizeof(wszMachineName), &wszMachineName, 0);
hb_retl( strcmp( wszMachineName,L"Microsoft DeviceEmulator" ) == 0 ) ;
}
HB_FUNC(GETOEMINFO)
{
WCHAR wszMachineName[128];
SystemParametersInfo(SPI_GETOEMINFO, sizeof(wszMachineName), &wszMachineName, 0);
hb_retc( WideToAnsi(wszMachineName ) ) ;
}
Saludos
Posted: Mon Jan 28, 2008 12:52 pm
by Antonio Linares
Toni,
Gracias!