PPC_CHMReader_src

所属分类:Windows CE
开发工具:Visual C++
文件大小:170KB
下载次数:78
上传日期:2008-09-01 17:44:46
上 传 者fasasas
说明:  Windows Mobile,ppc,wince下的chm格式文件阅读器源代码,非常有实用价值
(Windows Mobile, ppc, wince under the chm format reader source code, very useful)

文件列表:
PocketPC\CHM Reader\CeTitleBar.cpp (4585, 2004-01-22)
PocketPC\CHM Reader\CeTitleBar.h (1764, 2004-01-22)
PocketPC\CHM Reader\CHM Reader.cpp (5012, 2004-01-22)
PocketPC\CHM Reader\CHM Reader.h (1264, 2004-01-19)
PocketPC\CHM Reader\CHM Reader.ico (1078, 2004-01-09)
PocketPC\CHM Reader\CHM Reader.rc (11983, 2004-02-18)
PocketPC\CHM Reader\CHM Reader.vcb (197632, 2004-02-18)
PocketPC\CHM Reader\CHM Reader.vcc (3730, 2004-02-18)
PocketPC\CHM Reader\CHM Reader.vcl (14961, 2004-02-18)
PocketPC\CHM Reader\CHM Reader.vco (55808, 2004-02-18)
PocketPC\CHM Reader\CHM Reader.vcp (28362, 2004-02-18)
PocketPC\CHM Reader\CHM Reader.vcw (550, 2004-01-21)
PocketPC\CHM Reader\CHM ReaderDoc.cpp (2101, 2004-02-18)
PocketPC\CHM Reader\CHM ReaderDoc.h (1744, 2004-01-12)
PocketPC\CHM Reader\CHM ReaderView.cpp (5953, 2004-02-18)
PocketPC\CHM Reader\CHM ReaderView.h (2150, 2004-02-18)
PocketPC\CHM Reader\CHMFile.cpp (12192, 2004-02-18)
PocketPC\CHM Reader\CHMFile.h (2294, 2004-02-18)
PocketPC\CHM Reader\CHMLib (0, 2004-01-13)
PocketPC\CHM Reader\CHMLib\AUTHORS (240, 2002-10-10)
PocketPC\CHM Reader\CHMLib\ChmLib.dsp (3031, 2002-10-09)
PocketPC\CHM Reader\CHMLib\ChmLib.dsw (1683, 2002-10-09)
PocketPC\CHM Reader\CHMLib\ChmLib.sln (3789, 2003-12-31)
PocketPC\CHM Reader\CHMLib\ChmLib.vcproj (4275, 2003-12-31)
PocketPC\CHM Reader\CHMLib\chm_http.c (9017, 2002-10-10)
PocketPC\CHM Reader\CHMLib\chm_lib.cpp (51082, 2004-01-13)
PocketPC\CHM Reader\CHMLib\chm_lib.h (5692, 2004-01-09)
PocketPC\CHM Reader\CHMLib\COPYING (27046, 2002-10-10)
PocketPC\CHM Reader\CHMLib\enumdir_chmLib.c (3547, 2002-10-10)
PocketPC\CHM Reader\CHMLib\enumdir_chmLib.dsp (4460, 2002-10-09)
PocketPC\CHM Reader\CHMLib\enumdir_chmLib.vcproj (4503, 2003-12-31)
PocketPC\CHM Reader\CHMLib\enum_chmLib.c (2919, 2002-10-10)
PocketPC\CHM Reader\CHMLib\enum_chmLib.dsp (4446, 2002-10-09)
PocketPC\CHM Reader\CHMLib\enum_chmLib.vcproj (4473, 2003-12-31)
PocketPC\CHM Reader\CHMLib\extract_chmLib.c (5162, 2002-10-10)
PocketPC\CHM Reader\CHMLib\extract_chmLib.dsp (4460, 2002-10-09)
PocketPC\CHM Reader\CHMLib\extract_chmLib.vcproj (4503, 2003-12-31)
PocketPC\CHM Reader\CHMLib\INSTALL (3038, 2002-10-10)
PocketPC\CHM Reader\CHMLib\lzx.cpp (33241, 2002-10-10)
PocketPC\CHM Reader\CHMLib\lzx.h (2589, 2002-10-10)
... ...

CHMLIB 0.3 ========== ------- SUMMARY ------- chmlib is a small library designed for accessing MS ITSS files. The ITSS file format is used for Microsoft Html Help files (.chm), which have been the predominant medium for software documentation from Microsoft during the past several years, having superceded the previously used .hlp file format. Note that this is NOT the same as the OLE structured storage file format used by MS Excel, Word, and so on. Instead, it is a different file format which fulfills a similar purpose. Both file formats may be accessed via instances of the IStorage COM interface, which is essentially an "acts like a filesystem" interface. ------- FILE FORMAT SUPPORT ------- Lookup of files in the archive is supported, and should be relatively quick. Reading of files in the archive is also supported. Writing is not supported, but may be added in the future. In terms of support for the ITSS file format, there are a few places in which the support provided by this library is not fully general: 1. ITSS files whose names contain UTF-8 characters which are not part of the ASCII subset will not currently be dealt with gracefully. 2. Only version 3 ITSS files are supported at present, though some work has gone towards divining the differences between different versions of the file format. 3. Archives larger than 4 GB should be supported just fine, but if they contain files larger than 4GB, this library may break. Fortunately, this seems somewhat unlikely. If you run into .chm files (or files you suspect are ITSS files) that this library doesn't work with, please contact me so I can fix the library. ------- PORTABILITY ------- This software was originally developed on a Intel x86 Debian Linux machine, using gcc 3.0. It has since been compiled on various flavors of RedHat as well, and using versions of gcc from 2.95 through 3.2. Basic Win32 support should be in this release. (While a port to Win32 may _seem_ like a funny idea, given that Windows ships with libraries for CHM access, it turns out that Win CE does not; I've gotten a request for a port to Windows CE.) Finally, Andrew Hodgetts has ported to Solaris and IRIX: On Monday, 7 Oct 2002, Andrew Hodgetts wrote: > Solaris(Sun): > > I used both SunProC and GCC on the solaris machines to compile. They > both worked ok. > However, both required -lsocket on the link line of the Makefile or you > recieve linking errors. > > I have this working on CPUs ranging from Sun4m (Sparc5) through to > UltraSparcIII (SunFireV880). > > Irix (SGI): > > I only testing with the MIPS compiler (not GCC). All worked ok - lots of > warning messages, but it always does that. He further noted that: > ... for NON GCC compilers, a little tweaking may be required, but nothing too > complex. ie SunProC doesn't understand -fPIC for library building. Irix > required -n32 (new 32bit libraries) etc. These are things that someone who > uses the OS and compiler should be used to dealing with. ------- CREDITS ------- * Thanks to Stuart Caie for developing the LZX decompression code, and for granting permission to re-license under the LGPL. * Thanks to Stan Tobias for bugfixes and the added 'index page' feature of chm_http. * Thanks to Andrew Hodgetts for porting to Solaris and IRIX, as well as fixing some little-endian biases in the code.

近期下载者

相关文件


收藏者