What should I dot to be able to switch ON/Off my FEP from Control Panel/ Text Input? I've copied it to system/fep and I can install/uninstall it from another app but it does not appear in Control Panel.
I found it. EXPORT_C void QuartzFepDescription(TQuartzFepDescription& aFepDescription) { aFepDescription.iFepName.Zero(); aFepDescription.iFepName.Copy(_L("myFep")); aFepDescription.iFepType = TQuartzFepDescription::EFepTypeFloatingInABox; }
Could you please give more information on your FEP program. I am also implementing the same EXPORT_C void QuartzFepDescription(TQuartzFepDescription& aFepDescription) method but it does not display in the Control Panel -> Text input area. Is there something else besides this that is necessary?
I am very sorry to say that, but I lost this code by mistake:( The whole fep project was like a test for me, and cinse it was about a year ago I really don't remember how I managed to put my fep int the control panel. I am really sorry that I can't help:/
No problem filio. I since figured out what my problem was.
The problem I was having was because my definition file for a THUMB build was not in the correct order. The definitions file needs to have this order and mine for some reason was getting mangled. NewFepL needs to be at ordinal 1 or there are problems like I was having.
Forum posts: 148
EXPORT_C void QuartzFepDescription(TQuartzFepDescription& aFepDescription)
{
aFepDescription.iFepName.Zero();
aFepDescription.iFepName.Copy(_L("myFep"));
aFepDescription.iFepType = TQuartzFepDescription::EFepTypeFloatingInABox;
}
Forum posts: 26
method but it does not display in the Control Panel -> Text input area. Is there something else besides this that is necessary?
Thank you very much.
Niimidan
Forum posts: 148
Forum posts: 26
The problem I was having was because my definition file for a THUMB build was not in the correct order. The definitions file needs to have this order and mine for some reason was getting mangled. NewFepL needs to be at ordinal 1 or there are problems like I was having.
EXPORTS
NewFepL__FR7CCoeEnvRC7TDesC16RC17CCoeFepParameters @ 1 NONAME R3UNUSED ; NewFepL(CCoeEnv &, TDesC16 const &, CCoeFepParameters const &)
SynchronouslyExecuteSettingsDialogL__FR7CCoeEnvRC7TDesC16 @ 2 NONAME R3UNUSED ; SynchronouslyExecuteSettingsDialogL(CCoeEnv &, TDesC16 const &)
Reserved_1__Fv @ 3 NONAME R3UNUSED ; Reserved_1(void)
Reserved_2__Fv @ 4 NONAME R3UNUSED ; Reserved_2(void)
Reserved_3__Fv @ 5 NONAME R3UNUSED ; Reserved_3(void)
Reserved_4__Fv @ 6 NONAME R3UNUSED ; Reserved_4(void)
Reserved_5__Fv @ 7 NONAME R3UNUSED ; Reserved_5(void)
Reserved_6__Fv @ 8 NONAME R3UNUSED ; Reserved_6(void)
Reserved_7__Fv @ 9 NONAME R3UNUSED ; Reserved_7(void)
Reserved_8__Fv @ 10 NONAME R3UNUSED ; Reserved_8(void)
QuartzFepDescription__FR21TQuartzFepDescription @ 11 NONAME R3UNUSED ; QuartzFepDescription(TQuartzFepDescription &)
Niimidan
Forum posts: 278
-- JumpJack --
Forum posts: 278
http://discussion.forum.nokia.com/forum/showthread.php?t=74358
-- JumpJack --