23 lines
656 B
C
23 lines
656 B
C
/*
|
|
* WINElib-Resources
|
|
*/
|
|
#ifndef __WINE_LIBRES_H
|
|
#define __WINE_LIBRES_H
|
|
|
|
#ifdef WINELIB
|
|
|
|
#include "wintypes.h"
|
|
#include "resource.h"
|
|
|
|
extern INT LIBRES_AccessResource( HINSTANCE hModule, HRSRC hRsrc );
|
|
extern HGLOBAL LIBRES_AllocResource( HINSTANCE hModule, HRSRC hRsrc, DWORD size );
|
|
extern HRSRC LIBRES_FindResource( HINSTANCE hModule, LPCSTR name, LPCSTR type );
|
|
extern BOOL LIBRES_FreeResource( HGLOBAL handle );
|
|
extern HGLOBAL LIBRES_LoadResource( HINSTANCE hModule, HRSRC hRsrc );
|
|
extern LPVOID LIBRES_LockResource( HGLOBAL handle );
|
|
extern DWORD LIBRES_SizeofResource( HINSTANCE hModule, HRSRC hRsrc );
|
|
|
|
#endif /* WINELIB */
|
|
|
|
#endif
|