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
dpartCbio.h
Package: vxwork_src.rar [view]
Upload User: nvosite88
Upload Date: 2007-01-17
Package Size: 4983k
Code Size: 1k
Category:
VxWorks
Development Platform:
C/C++
- /* dpartCbio.h - disk partition manager header file */
- /* Copyright 1999-2002 Wind River Systems, Inc. */
- /*
- modification history
- --------------------
- 01e,21sep01,jkf SPR#69031, common code for both AE & 5.x.
- 01d,31jul99,jkf changed maximum partitions to 24, SPR#28277
- 01c,31jul99,jkf T2 merge, tidiness & spelling.
- 01b,14oct98,lrn T2.0 integration
- 01a,15jun98,lrn written.
- */
- #ifndef __INCdpartCbioh
- #define __INCdpartCbioh
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* typedefs */
- typedef struct
- {
- u_long offset ; /* abs. # of first block in partition */
- u_long nBlocks ; /* total # of blocks in partition */
- int flags ; /* misc. flags */
- int spare ; /* padding, must be zero */
- } PART_TABLE_ENTRY ;
- /* defines */
- #define PART_MAX_ENTRIES 24 /* Max # of partitions */
- /* prototypes */
- IMPORT CBIO_DEV_ID dpartDevCreate(CBIO_DEV_ID subDev,
- int nPart, FUNCPTR pPartDecodeFunc);
- IMPORT CBIO_DEV_ID dpartPartGet (CBIO_DEV_ID masterHandle, int partNum);
- #ifdef __cplusplus
- }
- #endif
- #endif /*__INCdpartCbioh*/