Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
SysPower.h
Package: ST_5105DTV.rar [view]
Upload User: fy98168
Upload Date: 2015-06-26
Package Size: 13771k
Code Size: 1k
Category:
DVD
Development Platform:
C/C++
- //
- // (C)版权2007 深圳市键桥通讯有限公司
- //
- // 文件名称: SysPower.h
- //
- // 创建日期: 2007.07.31
- //
- // 创建人 : Neil
- //
- // 修改人 :
- //
- // 描 述: 系统定时开关机头文件
- //
- // 版 本:1.0.0
- //
- //--------------------------------------------------------------------
- #ifndef __SYSPOWER_H
- #define __SYSPOWER_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #define SYS_SERVICES_BASE_ADDRESS 0x20F00000
- typedef enum _Sys_Power_TimeType
- {
- ONCE_ONLY,
- ONCE_A_DAY,
- INVALID_SETTING,
- TIME_TYPE_MAX
- }KB_SYS_POWER_TIME_TYPE;
- BOOL KB_SystemShutDown(UINT16 Hour, UINT16 Minute, KB_SYS_POWER_TIME_TYPE eType);
- BOOL KB_SystemSetUp(UINT16 Hour, UINT16 Minute, KB_SYS_POWER_TIME_TYPE eType);
- void KB_SystemShutDownNow(void);
- void KB_SystemSetUpNow(void);
- void KB_SysPowerInit(void);
- ST_ErrorCode_t KD_Restart(void);
- BOOL KB_SysPowerIsDown(void);
- #ifdef __cplusplus
- }
- #endif
- #endif