00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include "CommonFramework.h"
00019 #include "CreateStaticDLL.h"
00020
00021 _LIT(KTxt1,"statically linked DLL example \n\n");
00022 _LIT(KTxt2,"Hello!");
00023 _LIT(KTxtNewLine,"\n");
00024
00025 LOCAL_C void doExampleL()
00026 {
00027 console->Printf(KTxt1);
00028 CMessenger* myMessage = CMessenger::NewLC(*console, KTxt2);
00029 myMessage->ShowMessage();
00030 console->Printf(KTxtNewLine);
00031 CleanupStack::PopAndDestroy();
00032 }
00033
00034