1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
XFXFramework/src/libXFX/StorageDeviceAsyncResult.cpp
Tom Lint 95bf1d7ebc Added missing TypeInfos to XFX::Input namespace
Updated function incorrect signatures in libXFX
2013-10-03 14:40:24 +02:00

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
}
}
}