327b121d706190719dda96eaa74a9b6b795df9b8
[reactos.git] / reactos / tools / wrc / writeres.c
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include "config.h"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <assert.h>
27
28 #include "wine/unicode.h"
29 #include "wrc.h"
30 #include "genres.h"
31 #include "newstruc.h"
32 #include "utils.h"
33
34 /*
35 *****************************************************************************
36 * Function : write_resfile
37 * Syntax : void write_resfile(char *outname, resource_t *top)
38 * Input :
39 * outname - Filename to write to
40 * top - The resource-tree to convert
41 * Output :
42 * Description :
43 * Remarks :
44 *****************************************************************************
45 */
46 void write_resfile(char *outname, resource_t *top)
47 {
48 FILE *fo;
49 int ret;
50 char zeros[3] = {0, 0, 0};
51
52 fo = fopen(outname, "wb");
53 if(!fo)
54 {
55 error("Could not open %s\n", outname);
56 }
57
58 if(win32)
59 {
60 /* Put an empty resource first to signal win32 format */
61 res_t *res = new_res();
62 put_dword(res, 0); /* ResSize */
63 put_dword(res, 0x00000020); /* HeaderSize */
64 put_word(res, 0xffff); /* ResType */
65 put_word(res, 0);
66 put_word(res, 0xffff); /* ResName */
67 put_word(res, 0);
68 put_dword(res, 0); /* DataVersion */
69 put_word(res, 0); /* Memory options */
70 put_word(res, 0); /* Language */
71 put_dword(res, 0); /* Version */
72 put_dword(res, 0); /* Charateristics */
73 ret = fwrite(res->data, 1, res->size, fo);
74 if(ret != res->size)
75 {
76 fclose(fo);
77 error("Error writing %s", outname);
78 }
79 free(res);
80 }
81
82 for(; top; top = top->next)
83 {
84 if(!top->binres)
85 continue;
86
87 ret = fwrite(top->binres->data, 1, top->binres->size, fo);
88 if(ret != top->binres->size)
89 {
90 fclose(fo);
91 error("Error writing %s", outname);
92 }
93 if(win32 && (top->binres->size & 0x03))
94 {
95 /* Write padding */
96 ret = fwrite(zeros, 1, 4 - (top->binres->size & 0x03), fo);
97 if(ret != 4 - (top->binres->size & 0x03))
98 {
99 fclose(fo);
100 error("Error writing %s", outname);
101 }
102 }
103 }
104 fclose(fo);
105 }