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
CHUNKFILE.H
Package: openglsystem.rar [view]
Upload User: nthssl
Upload Date: 2022-04-05
Package Size: 25357k
Code Size: 1k
Category:
OpenCV
Development Platform:
Visual C++
- // ChunkFile.h: interface for the ChunkFile class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_CHUNKFILE_H__D9478612_7A19_11D1_9E1C_004F4902C0C3__INCLUDED_)
- #define AFX_CHUNKFILE_H__D9478612_7A19_11D1_9E1C_004F4902C0C3__INCLUDED_
- #if _MSC_VER >= 1000
- #pragma once
- #endif // _MSC_VER >= 1000
- class ChunkFile
- {
- public:
- unsigned short Id;
- ChunkFile(CFile *);
- virtual ~ChunkFile();
- UINT Read(void *, UINT);
- void Write(const void *, UINT);
- void Open(unsigned short);
- void Close();
- void ReadHeader();
- void Next();
- bool End();
- protected:
- CFile *fp;
- signed char nc;
- unsigned long SizeI[10];
- unsigned long PositionI[10];
- unsigned long resto();
- };
- #endif // !defined(AFX_CHUNKFILE_H__D9478612_7A19_11D1_9E1C_004F4902C0C3__INCLUDED_)