Release 950319
[wine] / include / resource.h
1 #ifndef __WINE_RESOURCE_H
2 #define __WINE_RESOURCE_H
3
4 #include "dlls.h"
5
6 typedef struct resource_s {
7         struct resource_s *next;
8         HANDLE info_mem;        /* this struct */
9         HANDLE rsc_mem;         /* resource data */
10         /* */
11         HANDLE instance;        /* resource instance */
12         LPSTR name;             /* resource name */
13         LPSTR type;             /* resource type */
14         int count;              /* lock count */
15         int size;               /* resource size */
16         int fd;                 /* fd */
17         int offset;             /* offset */
18         struct w_files *wpnt;
19 } RESOURCE;
20
21 struct ResourceTable{
22         int id,type;
23         char *name;
24         unsigned char* value;
25         unsigned size;
26 };
27 #endif /* __WINE_RESOURCE_H */