#ifndef __RILDEMO_H__ #define __RILDEMO_H__ // this file is equivalent to 'ril.h' typedef void* HSRIL; typedef int HSRESULT; typedef void (*pfn_handle_ril_result)(long dwCode, HSRESULT hrCmdID, const void *lpData, long cbdata, long dwParam); HSRESULT performrequest1(HSRIL hRil, int p); HSRESULT performrequest2(HSRIL hRil, int p1, int p2); HSRIL rilinit(pfn_handle_ril_result fn, long param); void rilend(HSRIL hRil); #endif