mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
|
#ifndef _GUIDE_H_
|
|||
|
#define _GUIDE_H_
|
|||
|
|
|||
|
#include <System.h>
|
|||
|
/********************************************************
|
|||
|
* Guide.h *
|
|||
|
* *
|
|||
|
* XFX Guide definition file *
|
|||
|
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
|
|||
|
********************************************************/
|
|||
|
#include <Storage/StorageDevice.h>
|
|||
|
|
|||
|
using namespace System;
|
|||
|
using namespace XFX::Storage;
|
|||
|
|
|||
|
namespace XFX
|
|||
|
{
|
|||
|
namespace GamerServices
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Provides access to the Guide user interface.
|
|||
|
/// </summary>
|
|||
|
class Guide
|
|||
|
{
|
|||
|
private:
|
|||
|
static int _isVisible = false;
|
|||
|
|
|||
|
public:
|
|||
|
static int IsScreenSaverEnabled();
|
|||
|
static int IsVisible();
|
|||
|
static NotificationPosition notificationPosition;
|
|||
|
|
|||
|
static IAsyncResult BeginShowKeyboardInput(PlayerIndex_t player, String &title, String &description, String &defaultText, AsyncCallback &callback, object state);
|
|||
|
static IAsyncResult BeginShowStorageDeviceSelector(int sizeInBytes, int directoryCount, AsyncCallback callback, object state);
|
|||
|
static IAsyncResult BeginShowStorageDeviceSelector(AsyncCallback &callback, object state);
|
|||
|
static IAsyncResult BeginShowStorageDeviceSelector(PlayerIndex_t player, int sizeInBytes, int directoryCount, AsyncCallback callback, object state);
|
|||
|
static IAsyncResult BeginShowStorageDeviceSelector(PlayerIndex_t player, AsyncCallback callback, object state);
|
|||
|
static String EndShowKeyboardInput(IAsyncResult result);
|
|||
|
static StorageDevice EndShowStorageDeviceSelector(IAsyncResult result)
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endif //_GUIDE_H_
|