Hi!
In my palm application i use voice dial helper service. I check it's
presence with next code:

bool CDialer::Enabled(void)
{
     HelperNotifyValidateType validate;
     HelperNotifyEventType details;
     SysNotifyParamType param;

     validate.serviceClassID = kHelperServiceClassIDVoiceDial;
     validate.helperAppID = 0;

     details.version = kHelperNotifyCurrentVersion;
     details.actionCode = kHelperNotifyActionCodeValidate;
     details.data.validateP = &validate;

     param.notifyType = sysNotifyHelperEvent;
     param.broadcaster = DB_CREATOR;
     param.notifyDetailsP = &details;
     param.handled = false;

     SysNotifyBroadcast(&param);

     return (param.handled);
}

It works OK on emulators. But i have user's response that this service is
not present on Kyocera 7135. It is smartphone with Palm OS 4.1, and i think
it must have such service. I have no access to such device or it's emulator,
so i'll be gratefull for any prompting.
Thanks!
Igor Stasyak.



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to