advanced.h
上传用户: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: advanced.h 615 2006-01-26 16:57:51Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2004-2005 Gabor Kovacs
  21.  *
  22.  ****************************************************************************/
  23. #ifndef __ADVANCED_H
  24. #define __ADVANCED_H
  25. #define ADVANCED_ID FOURCC('A','D','V','P')
  26. #define ADVANCED_OLDSHELL 0x1F
  27. #define ADVANCED_NOBACKLIGHT 0x20
  28. #define ADVANCED_NOWMMX 0x28
  29. #define ADVANCED_SLOW_VIDEO 0x25
  30. #define ADVANCED_IDCTSWAP 0x29
  31. #define ADVANCED_COLOR_LOOKUP 0x26
  32. #define ADVANCED_HOMESCREEN 0x2D
  33. #define ADVANCED_BENCHFROMPOS 0x30
  34. #define ADVANCED_PRIORITY 0x36
  35. #define ADVANCED_SYSTEMVOLUME 0x34
  36. #define ADVANCED_AVIFRAMERATE 0x35
  37. #define ADVANCED_VR41XX 0x37
  38. #define ADVANCED_KEYFOLLOWDIR 0x38
  39. #define ADVANCED_MEMORYOVERRIDE 0x39
  40. #define ADVANCED_WIDCOMMAUDIO 0x3A
  41. #define ADVANCED_WIDCOMMDLL 0x3B
  42. #define ADVANCED_NOBATTERYWARNING 0x3C
  43. #define ADVANCED_NOEVENTCHECKING 0x3D
  44. #define ADVANCED_CARDPLUGINS 0x3E
  45. #define ADVANCED_WAVEOUTPRIORITY 0x3F
  46. #define ADVANCED_NODEBLOCKING 0x41
  47. #define ADVANCED_BLINKLED 0x42
  48. // these are not boolean (should not use QueryAdvanced)
  49. #define ADVANCED_DROPTOL 0x2A
  50. #define ADVANCED_SKIPTOL 0x2B
  51. #define ADVANCED_AVOFFSET 0x2C
  52. void Advanced_Init();
  53. void Advanced_Done();
  54. // helper for getting boolean advanced setting values
  55. DLL bool_t QueryAdvanced(int Param);
  56. #endif