mirror of
https://github.com/libretro/RetroArch
synced 2025-01-27 03:35:22 +00:00
25 lines
572 B
C++
25 lines
572 B
C++
#ifndef _MENU_XUI_H_
|
|
#define _MENU_XUI_H_
|
|
|
|
#include <xui.h>
|
|
#include <xuiapp.h>
|
|
|
|
class CSSNES : public CXuiModule
|
|
{
|
|
protected:
|
|
/* Override so that Cssnes can register classes */
|
|
virtual HRESULT RegisterXuiClasses();
|
|
/* Override so that Cssnes can unregister classes */
|
|
virtual HRESULT UnregisterXuiClasses();
|
|
};
|
|
|
|
class CSSNESMain: public CXuiSceneImpl
|
|
{
|
|
public:
|
|
XUI_IMPLEMENT_CLASS(CSSNESMain, L"CSSNESMain", XUI_CLASS_SCENE)
|
|
};
|
|
|
|
HRESULT APIENTRY XuiTextureLoader(IXuiDevice *pDevice, LPCWSTR szFileName, XUIImageInfo *pImageInfo, IDirect3DTexture9 **ppTex);
|
|
|
|
#endif
|