Hi, Guy`s !
First, sorry for bad english
Ok, I don`t know whom to contact.
There is peace of code ...
MOV R1, #0x3000000
...
ORR R1, R1, #0x32C ; dwIoControlCode
...
BL DeviceIoControl...
The control code parameter (0x300032C) that is passed to the function DeviceIoControl and further to ril.dll who is open as file.
#define CTL_CODE(DeviceType, Function, Method, Access) ( ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method) )
From 0x300032C, "Function" = 0xCB but this function number is not in the rildrv.h.
I can`t find anywhere that describes the functions and what it does. It may not be who knows?
Help me, pls !
Like with any undocumented IOCTL you'll need to guess what it does.
Or conclude based on how and when it's invoked...
Thanks, stepw.
I know when it's invoked but don`t know how .
This pease of code from ussd.dll.
Every time before calling RIL_SendSupServiceData or RIL_CancelSupServiceDataSession running this code (DeviceIoControl with parameter CTL_CODE = 0x300032C).
Related
Hey all , is anybody able to provide me a sample prog written in eVC++ which would help me make a call or something similar. I need the source code !!!! I dont seem to understand how to compile all the code in the forums. So please hep !!
Hi there,
I am try to write a wrapper dll around the orginal ril.dll. There are few functions in the org dll, from which I cannot find prototypes. I need the parameters of these funktions:
RIL_RegisterATCommandLogging
RIL_ATCommandLogFile
RIL_GetAllOperatorsList
RIL_GetATR
RIL_SendSimToolkitEventDownload
RIL_GetCurrentSystemType
RIL_LogEventToRadio
RIL_NDIS_SendPacket
RIL_NDIS_ReceivePacketDone
RIL_NDIS_SetGPRSContextActivated
RIL_GetPacketByteCount
RIL_ResetPacketByteCount
RIL_GetRoamingMode
RIL_SetRoamingMode
RIL_GetCurrentRoamingStatus
RIL_GetCurrentLocationStatus
RIL_GetPreferredPrivacyMode
RIL_SetPreferredPrivacyMode
RIL_GetCurrentPrivacyStatus
RIL_SendAKey
RIL_SendFlash
Can anyone give me a tip, how to get the parameters ?
Regards,
Jogi
hope to help you with the attachment.
Thank you,
but the regkeys don´t help me. I need the parameters of these functions or a workaround to get them.
Jogi
Hello every body,
the good new today i see the Android 2.3 Gingerbread Released!
the bad news somebody said this release not support for arabic
This is what we go through I and thousands of people in the Middle East
But when I check Google for developers I found some ways to play Arabic with a few moments
in this class we can found text proprieties :
Bidi Class
we need to set Constants something like this:
##
(int) DIRECTION_DEFAULT_RIGHT_TO_LEFT = 1
## Indicates whether the text is from right to left, that is, both the base direction and the text direction is from right to left.
isRightToLeft()
We can change Unicode from this file:
Character.UnicodeBlock
The Question how change this constant and vaules ??!!
the google android found solution for you "API Levels"
"I THINK "
we can update the constant via The AndroidManifest.xml File
change the constant and send to system via this XML file
I want some help from the developers here :
Q-1 : how to add this value correctly into AndroidManifest.xml
Q-2: how to attach the AndroidManifest.xml into system to be active
i'm looking in many site and someone said we can embede the file with an apk APP with this tool android-apktool
this is all I know, please we need your help
eng.hany alsamman
iam not an expert but i think this my help u
http://forum.xda-developers.com/showthread.php?t=854864
freepal08 said:
iam not an expert but i think this my help u
http://forum.xda-developers.com/showthread.php?t=854864
Click to expand...
Click to collapse
thanks alot man
but i need more tutorial about that
Please any Developer can help ?
Did you check out this files for Arabic support:
ardoid.com/?p=21
androlib.com/android.developer.ayman-alsanad-Cz.aspx
I have an issue with the lockscreen after installation of a certification .cer for the wifi of the university.
Someone has the same problem ? Or someone know how to fix it ?
Rom : Imperium_LL_Rom_OD7_5.1
Kernel : Imperium Kernel 1.7
Bootloader : I9505XXUHOD7
( sorry for my bad english )
youtube.com/watch?v=v-DVA59x500
I want to made my own lock screen , but i don't know how to do it , i have a few notion in java dev , but i don't know how to do a lockscreen app ( i know there is many lockscreen app on the market , but i want my app ), could someone help me or get some source .
Thank's and sorry for my bad english
EDIT : I have the disgn of my app no probleme , but i got 9 button and i want that the user register his code , and then he have to do this code for unlock the phone .
I want too
but i dont know how to ?? Is there any one to tell us plz ?
Well i'm not alone ^^
If u want we can work together ? As i said i have a very basic visual that i can show you ^^
hello, for enabling or disabling lock screen in Android, we need to get the instance of keyBoard Manager, using getSystemService(). The syntax is as,
Code:
KeyguardManager keyguardManager = (KeyguardManager)getSystemService(Activity.KEYGUARD_SERVICE);
KeyguardLock lock = keyguardManager.newKeyguardLock(KEYGUARD_SERVICE);
For locking the screen use,
Code:
lock.reenableKeyguard();
and for disabling the lock use,
Code:
lock.disableKeyguard();
Source : http://smartandroidians.blogspot.com/2010/03/enabling-and-disabling-lock-screen-in.html
Thanks you i will try it when i can