Release 941122
[wine/multimedia.git] / include / resource.h
blob88c3585a6dd105c3066aa6c6deb1ef47ac694a2c
1 #ifndef __WINE_RESOURCE_H
2 #define __WINE_RESOURCE_H
4 #include "dlls.h"
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;
21 struct ResourceTable{
22 int id,type;
23 char *name;
24 unsigned char* value;
25 unsigned size;
27 #endif /* __WINE_RESOURCE_H */