native86.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*****************************************************************************
  2.  *
  3.  * This program is free software ; you can redistribute it and/or modify
  4.  * it under the terms of the GNU General Public License as published by
  5.  * the Free Software Foundation; either version 2 of the License, or
  6.  * (at your option) any later version.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License
  14.  * along with this program; if not, write to the Free Software
  15.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  16.  *
  17.  * $Id: native86.c 292 2005-10-14 20:30:00Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2004-2005 Gabor Kovacs
  21.  *
  22.  ****************************************************************************/
  23. #include "../common.h"
  24. #if defined(TARGET_PALMOS)
  25. #include "pace.h"
  26. Err SysGetEntryAddresses(UInt32 refNum, UInt32 entryNumStart, UInt32 entryNumEnd, void **addressP)
  27. {
  28. return 1; //fail
  29. }
  30. Err SysFindModule(UInt32 dbType, UInt32 dbCreator, UInt16 rsrcID, UInt32 flags, UInt32 *refNumP)
  31. {
  32. return 1;
  33. }
  34. Err SysLoadModule(UInt32 dbType, UInt32 dbCreator, UInt16 rsrcID, UInt32 flags, UInt32 *refNumP)
  35. {
  36. return 1;
  37. }
  38. Err SysUnloadModule(UInt32 refNum)
  39. {
  40. return 1;
  41. }
  42. #include <windows.h>
  43. void** HALDispatch()
  44. {
  45. static void** Table = NULL;
  46. if (!Table)
  47. {
  48. HMODULE Module = LoadLibrary(T("dal.dll"));
  49. void (__cdecl *GetDispath)(void***) = (void (__cdecl*)(void***)) GetProcAddress(Module,"__ExportDispatchTable");
  50. GetDispath(&Table);
  51. //FreeLibrary(Module);
  52. }
  53. return Table;
  54. }
  55. void SonyCleanDCache(void* p, UInt32 n) {}
  56. void SonyInvalidateDCache(void* p, UInt32 n) {}
  57. void HALDelay(UInt32 n) 
  58. {
  59. ((void (__cdecl*)(UInt32))HALDispatch()[0x0A])(n);
  60. }
  61. void HALDisplayWake() 
  62. {
  63. ((void (__cdecl*)())HALDispatch()[0x10])();
  64. }
  65. void HALDisplayOff_TREO650() 
  66. {
  67. ((void (__cdecl*)())HALDispatch()[0xD6])();
  68. }
  69. #endif