mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
37 lines
712 B
C++
37 lines
712 B
C++
|
|
#include <GamerServices/StorageDeviceAsyncResult.h>
|
|
|
|
namespace XFX
|
|
{
|
|
namespace GamerServices
|
|
{
|
|
Object* StorageDeviceAsyncResult::AsyncState()
|
|
{
|
|
return syncObject;
|
|
}
|
|
|
|
bool StorageDeviceAsyncResult::CompletedSynchronously()
|
|
{
|
|
// TODO: implement
|
|
return true;
|
|
}
|
|
|
|
StorageDeviceAsyncResult::StorageDeviceAsyncResult(Object * const stateObject, int player)
|
|
{
|
|
syncObject = stateObject;
|
|
playerIndex = player;
|
|
}
|
|
|
|
StorageDeviceAsyncResult::StorageDeviceAsyncResult(const StorageDeviceAsyncResult &obj)
|
|
{
|
|
syncObject = obj.syncObject;
|
|
playerIndex = obj.playerIndex;
|
|
}
|
|
|
|
StorageDeviceAsyncResult::StorageDeviceAsyncResult(IAsyncResult* &obj)
|
|
{
|
|
// TODO: implement
|
|
}
|
|
}
|
|
}
|