4 * Copyright 1995 Alexandre Julliard
7 #ifndef __WINE_RESOURCE_H
8 #define __WINE_RESOURCE_H
14 * BS: I comment this out to catch all occurences
15 * of reference to this structure which is now
23 * const unsigned char* bytes;
28 /* Built-in resources */
36 extern void LIBRES_RegisterResources(const wrc_resource32_t
* const * Res
);
38 #if defined(__GNUC__) && ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 7)))
39 #define WINE_CONSTRUCTOR __attribute__((constructor))
40 #define HAVE_WINE_CONSTRUCTOR
42 #define WINE_CONSTRUCTOR
43 #undef HAVE_WINE_CONSTRUCTOR
46 extern HGLOBAL16
SYSRES_LoadResource( SYSTEM_RESOURCE id
);
47 extern void SYSRES_FreeResource( HGLOBAL16 handle
);
48 extern LPCVOID
SYSRES_GetResPtr( SYSTEM_RESOURCE id
);
50 #endif /* __WINE_RESOURCE_H */