| * Wine Resource Compiler structure definitions |
| * Copyright 1998 Bertho A. Stultiens |
| #include "windef.h" /* For types in structure */ |
| * Note on the resource and type names: |
| * These are (if non-null) pointers to a pascal-style |
| * string. The first character (BYTE for 16 bit and WCHAR |
| * for 32 bit resources) contains the length and the |
| * rest is the string. They are _not_ '\0' terminated! |
| typedef struct wrc_resource16 |
| INT resid; /* The resource id if resname == NULL */ |
| INT restype; /* The resource type-id if typename == NULL */ |
| LPBYTE data; /* Actual resource data */ |
| UINT datasize; /* The size of the resource */ |
| typedef struct wrc_resource32 |
| INT resid; /* The resource id if resname == NULL */ |
| INT restype; /* The resource type-id if typename == NULL */ |
| LPBYTE data; /* Actual resource data */ |
| UINT datasize; /* The size of the resource */ |
| #endif /* __WINE_WRC_RSC_H */ |