Starting a new page: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Reverted edits by 222.66.77.52 to last version by Kichik)
No edit summary
Line 1: Line 1:
To start a new page, simply type the new page's soon-to-be URL, and edit the empty page. For testing purpose, use the [[NSIS Wiki:Sandbox|sandbox]]. For more information about creating new pages, see the [[MetaWikiPedia:Help:Starting_a_new_page|help]].
{{PageAuthor|sunjammer}}


[[Category:Wiki FAQ]]
== Links ==
<attach>Extractdll.zip</attach>
 
== Description ==
'''Version:''' 0.1.
 
Written by Tim Kosse aka [[User:CodeSquid|CodeSquid]] this plugin can decompress files compressed with compressfile.exe.
 
The following is taken from the readme file in the ExtractDLL downloadable zip file:
 
<pre>
What is this?
-------------
 
  ExtractDLL is a extension DLL for NSIS. It can decompress files
  which were compressed with compressfile.exe before. It is especially
  useful in combination with NSISdl so that you don't have to
  download large files uncompressed.
 
Usage
-----
 
  Decompression (within NSIS script):
  - Push path and name of compressed file and then path and name of
    destination file on top of the stack.
  - Call the function "extract" with CallInstDLL
  - On Success, the string "success" is on top of the stack, else an
    error message.
 
  Compression (outside NSIS script or using !system):
  - Call CompressFile.exe with the name of the uncompressed file and
    of the compressed file as parameters
 
Known limitations
-----------------
 
  Only zlib compression at this time, bzip2 will follow later.
</pre>
 
[[Category:Plugins]]

Revision as of 18:06, 26 April 2007

Author: sunjammer (talk, contrib)


Links

Extractdll.zip (66 KB)

Description

Version: 0.1.

Written by Tim Kosse aka CodeSquid this plugin can decompress files compressed with compressfile.exe.

The following is taken from the readme file in the ExtractDLL downloadable zip file:

What is this?
-------------

  ExtractDLL is a extension DLL for NSIS. It can decompress files 
  which were compressed with compressfile.exe before. It is especially
  useful in combination with NSISdl so that you don't have to 
  download large files uncompressed.

Usage
-----

  Decompression (within NSIS script):
  - Push path and name of compressed file and then path and name of 
    destination file on top of the stack.
  - Call the function "extract" with CallInstDLL
  - On Success, the string "success" is on top of the stack, else an 
    error message.
  
  Compression (outside NSIS script or using !system):
  - Call CompressFile.exe with the name of the uncompressed file and 
    of the compressed file as parameters

Known limitations
-----------------

  Only zlib compression at this time, bzip2 will follow later.