⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 windll.c

📁 infozip2.2源码
💻 C
字号:
/* Copyright (C) 1996 Mike White Permission is granted to any individual or institution to use, copy, or redistribute this software so long as all of the original files are included, that it is not sold for profit, and that this copyright notice is retained.*//* *  windll.c by Mike White loosly based on Mark Adler's zip.c */#include <windows.h>#include <process.h>#include <signal.h>#include <stdarg.h>#include <ctype.h>#include "zip.h"#include "windll.h"#ifdef ZIPLIB/*  DLL Entry Point */#ifdef __BORLANDC__#pragma argsused/* Borland seems to want DllEntryPoint instead of DllMain like MSVC */#define DllMain DllEntryPoint#endif#ifdef WIN32BOOL WINAPI DllMain( HINSTANCE hInstance,                     DWORD dwReason,                     LPVOID plvReserved)#elseint WINAPI LibMain( HINSTANCE hInstance,                        WORD wDataSegment,                        WORD wHeapSize,                        LPSTR lpszCmdLine )#endif{#ifndef WIN32/* The startup code for the DLL initializes the local heap(if there is one) with a call to LocalInit which locks the data segment. */if ( wHeapSize != 0 )   {   UnlockData( 0 );   }hInst = hInstance;return 1;   /* Indicate that the DLL was initialized successfully. */#elseBOOL rc = TRUE;switch( dwReason )   {   case DLL_PROCESS_ATTACH:      // DLL is loaded. Do your initialization here.      // If cannot init, set rc to FALSE.      hInst = hInstance;      break;   case DLL_PROCESS_DETACH:      // DLL is unloaded. Do your cleanup here.      break;   default:      break;   }return rc;#endif}#ifdef __BORLANDC__#pragma argsused#endifint FAR PASCAL WEP ( int bSystemExit ){return 1;}#endif /* ZIPLIB */DLLCOMMENT *lpComment;LPSTR szCommentBuf;HANDLE hStr;void comment(unsigned int comlen){unsigned int i;if (comlen > 65534L)   comlen = (unsigned int) 65534L;hStr = GlobalAlloc( GPTR, (DWORD)65535L);if ( !hStr )   {   hStr = GlobalAlloc( GPTR, (DWORD) 2);   szCommentBuf = GlobalLock(hStr);   szCommentBuf[0] = '\0';   return;   }szCommentBuf = GlobalLock(hStr);if (comlen)   {   for (i = 0; i < comlen; i++)       szCommentBuf[i] = zcomment[i];   szCommentBuf[comlen] = '\0';   }else   szCommentBuf[0] = '\0';free(zcomment);zcomment = malloc(1);*zcomment = 0;szCommentBuf = lpComment(szCommentBuf);return;}#define STDIO_BUF_SIZE 16384int __far __cdecl printf(const char *format, ...){va_list argptr;HANDLE hMemory;LPSTR pszBuffer;int len;va_start(argptr, format);hMemory = GlobalAlloc(GMEM_MOVEABLE, STDIO_BUF_SIZE);WinAssert(hMemory);if (!hMemory)   {   return 0;   }pszBuffer = (LPSTR)GlobalLock(hMemory);WinAssert(pszBuffer);len = wvsprintf(pszBuffer, format, argptr);va_end(argptr);WinAssert(strlen(pszBuffer) < STDIO_BUF_SIZE);len = lpZipPrint(pszBuffer, len);GlobalUnlock(hMemory);GlobalFree(hMemory);return len;}/* fprintf clone for code in zip.c, etc. */int __far __cdecl fprintf(FILE *file, const char *format, ...){va_list argptr;HANDLE hMemory;LPSTR pszBuffer;int len;va_start(argptr, format);hMemory = GlobalAlloc(GMEM_MOVEABLE, STDIO_BUF_SIZE);WinAssert(hMemory);if (!hMemory)   {   return 0;   }pszBuffer = GlobalLock(hMemory);WinAssert(pszBuffer);len = wvsprintf(pszBuffer, format, argptr);va_end(argptr);WinAssert(strlen(pszBuffer) < STDIO_BUF_SIZE);if ((file == stderr) || (file == stdout))   {   len = lpZipPrint(pszBuffer, len);   }else   len = write(fileno(file),(char far *)(pszBuffer), len);GlobalUnlock(hMemory);GlobalFree(hMemory);return len;}void __far __cdecl perror(const char *parm1){printf(parm1);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -