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
mkGoff.c
Package: unzip540.zip [view]
Upload User: andy_li
Upload Date: 2007-01-06
Package Size: 1019k
Code Size: 1k
Category:
Compress-Decompress algrithms
Development Platform:
MultiPlatform
- /* Write out a fragment of assembly source giving offsets in globals.h: */
- #define UNZIP_INTERNAL
- #include "unzip.h"
- #include "crypt.h"
- #include <stdio.h>
- /* Keep this in sync with the definition of redirSlide in unzpriv.h: */
- #ifdef DLL
- # define pG_redirSlide pG->redirect_pointer
- #else
- # define pG_redirSlide pG->area.Slide
- #endif
- int main(int argc, char **argv)
- {
- Uz_Globs *pG = (void *) 0L;
- printf("bb EQU %lun", &pG->bb);
- printf("bk EQU %lun", &pG->bk);
- printf("wp EQU %lun", &pG->wp);
- #ifdef FUNZIP
- printf("in EQU %lun", &pG->in);
- #else
- printf("incnt EQU %lun", &pG->incnt);
- printf("inptr EQU %lun", &pG->inptr);
- printf("csize EQU %lun", &pG->csize);
- printf("mem_mode EQU %lun", &pG->mem_mode);
- #endif
- printf("slide EQU %lun", &pG_redirSlide);
- printf("SIZEOF_slide EQU %lun", sizeof(pG_redirSlide));
- printf("CRYPT EQU %dn", CRYPT);
- return 0;
- }