mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
13 lines
351 B
C
13 lines
351 B
C
/*
|
|
* WINElib-Resources
|
|
*/
|
|
#ifndef __WINE_LIBRES_H
|
|
#define __WINE_LIBRES_H
|
|
|
|
#include "windef.h"
|
|
|
|
extern HRSRC LIBRES_FindResource( HINSTANCE hModule, LPCWSTR name, LPCWSTR type );
|
|
extern HGLOBAL LIBRES_LoadResource( HINSTANCE hModule, HRSRC hRsrc );
|
|
extern DWORD LIBRES_SizeofResource( HINSTANCE hModule, HRSRC hRsrc );
|
|
|
|
#endif /* __WINE_LIBRES_H */
|