1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Halofreak1990 8f089dc2ab Added the current XFX directory tree.
WARNING!!! This revision cannot compile correctly. It is updated to reflect the many changes within the XFX project.
2010-12-04 16:14:34 +00:00

45 lines
1.5 KiB
C++

#ifndef _GUIDE_H_
#define _GUIDE_H_
#include <System.h>
/********************************************************
* Guide.h *
* *
* XFX Guide definition file *
* Copyright © 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_