updated /hdrinfo to include information about lzma too
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3457 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
e5280834ac
commit
fa355ff0e3
1 changed files with 5 additions and 3 deletions
|
@ -218,9 +218,11 @@ int main(int argc, char **argv)
|
|||
{
|
||||
if (build.display_info)
|
||||
{
|
||||
fprintf(g_output,"Size of EXE header is %d bytes for zlib, %d bytes for bzip2.\n", zlib_exeheader_size,bzip2_exeheader_size);
|
||||
fprintf(g_output,"Size of info header is %d bytes.\n",sizeof(firstheader));
|
||||
fprintf(g_output,"Size of [un]install header is %d bytes,\n",sizeof(header));
|
||||
fprintf(g_output,"Size of zlib EXE header is %d bytes.\n",zlib_exeheader_size);
|
||||
fprintf(g_output,"Size of bzip2 EXE header is %d bytes.\n",bzip2_exeheader_size);
|
||||
fprintf(g_output,"Size of lzma EXE header is %d bytes.\n",lzma_exeheader_size);
|
||||
fprintf(g_output,"Size of first header is %d bytes.\n",sizeof(firstheader));
|
||||
fprintf(g_output,"Size of main header is %d bytes.\n",sizeof(header));
|
||||
fprintf(g_output,"Size of each section is %d bytes.\n",sizeof(section));
|
||||
fprintf(g_output,"Size of each page is %d bytes.\n",sizeof(page));
|
||||
fprintf(g_output,"Size of each instruction is %d bytes.\n",sizeof(entry));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue