writeres.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * Write .res file from a resource-tree
  3. *
  4. * Copyright 1998 Bertho A. Stultiens
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  19. */
  20. #include "config.h"
  21. #include "wine/port.h"
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include <assert.h>
  26. #include "wrc.h"
  27. #include "genres.h"
  28. #include "newstruc.h"
  29. #include "utils.h"
  30. /*
  31. *****************************************************************************
  32. * Function : write_resfile
  33. * Syntax : void write_resfile(char *outname, resource_t *top)
  34. * Input :
  35. * outname - Filename to write to
  36. * top - The resource-tree to convert
  37. * Output :
  38. * Description :
  39. * Remarks :
  40. *****************************************************************************
  41. */
  42. void write_resfile(char *outname, resource_t *top)
  43. {
  44. FILE *fo;
  45. unsigned int ret;
  46. char zeros[3] = {0, 0, 0};
  47. fo = fopen(outname, "wb");
  48. if(!fo)
  49. fatal_perror("Could not open %s", outname);
  50. if(win32)
  51. {
  52. /* Put an empty resource first to signal win32 format */
  53. res_t *res = new_res();
  54. put_dword(res, 0); /* ResSize */
  55. put_dword(res, 0x00000020); /* HeaderSize */
  56. put_word(res, 0xffff); /* ResType */
  57. put_word(res, 0);
  58. put_word(res, 0xffff); /* ResName */
  59. put_word(res, 0);
  60. put_dword(res, 0); /* DataVersion */
  61. put_word(res, 0); /* Memory options */
  62. put_word(res, 0); /* Language */
  63. put_dword(res, 0); /* Version */
  64. put_dword(res, 0); /* Characteristics */
  65. ret = fwrite(res->data, 1, res->size, fo);
  66. if(ret != res->size)
  67. {
  68. fclose(fo);
  69. error("Error writing %s\n", outname);
  70. }
  71. free(res);
  72. }
  73. for(; top; top = top->next)
  74. {
  75. if(!top->binres)
  76. continue;
  77. ret = fwrite(top->binres->data, 1, top->binres->size, fo);
  78. if(ret != top->binres->size)
  79. {
  80. fclose(fo);
  81. error("Error writing %s\n", outname);
  82. }
  83. if(win32 && (top->binres->size & 0x03))
  84. {
  85. /* Write padding */
  86. ret = fwrite(zeros, 1, 4 - (top->binres->size & 0x03), fo);
  87. if(ret != 4 - (top->binres->size & 0x03))
  88. {
  89. fclose(fo);
  90. error("Error writing %s\n", outname);
  91. }
  92. }
  93. }
  94. if (fclose(fo))
  95. fatal_perror("Error writing %s", outname);
  96. }