sipr_dll_stub.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. #include <e32std.h>
  2. #include <string.h>
  3. #include "hxglobalmgr.h"
  4. GLDEF_C TInt E32Dll(TDllReason reason)
  5. {
  6.     if (reason == EDllProcessDetach)
  7.     {
  8.         HXGlobalManager* pGM = HXGlobalManager::Instance();
  9.         if (pGM)
  10.         {
  11.             pGM->Shutdown();
  12.         }
  13.     }
  14.     return(KErrNone);
  15. }
  16. struct SymbolEntry {
  17.     const char* m_pSymbolName;
  18.     int m_ordinal;
  19. };
  20. static const struct SymbolEntry z_symbolTable[] = {
  21.     {"GetSymbolOrdinal", 1},
  22.     {"RAOpenCodec", 2},
  23.     {"RAOpenCodec2", 3},
  24.     {"RAGetNumberOfFlavors", 4},
  25.     {"RAGetFlavorProperty", 5},
  26.     {"RASetFlavor", 6},
  27.     {"RASetPwd", 7},
  28.     {"RACloseCodec", 8},
  29.     {"RAGetBackend", 9},
  30.     {"RASetComMode", 10},
  31.     {"RAGetDecoderBackendGUID", 11},
  32.     {"RAGetGUID", 12},
  33.     {"RAInitDecoder", 13},
  34.     {"RADecode", 14},
  35.     {"RAFlush", 15},
  36.     {"RAFreeDecoder", 16}
  37. };
  38. extern "C"
  39. int GetSymbolOrdinal(const char* pSymbolName)
  40. {
  41.     int ret = 0;
  42.     int numSymbols = sizeof(z_symbolTable) / sizeof(struct SymbolEntry);
  43.     int i;
  44.     if( NULL != pSymbolName )
  45.     {
  46.        for(i = 0; !ret && (i < numSymbols); i++)
  47.        {
  48.            if (!strcmp(pSymbolName, z_symbolTable[i].m_pSymbolName))
  49.            {
  50.                ret = z_symbolTable[i].m_ordinal;
  51.                break;
  52.            }
  53.        }
  54.     }
  55.     return ret;
  56. }