C API: ragephoto_setphotodata(c) returns now bool

This commit is contained in:
Syping 2023-02-08 19:59:56 +01:00
parent 45a45701f6
commit 255c1a28b9
3 changed files with 8 additions and 8 deletions

View file

@ -1249,16 +1249,16 @@ void ragephoto_setbufferoffsets(ragephoto_t instance)
ragePhoto->setBufferOffsets();
}
void ragephoto_setphotodata(ragephoto_t *instance, RagePhotoData *ragePhotoData)
ragephoto_bool_t ragephoto_setphotodata(ragephoto_t *instance, RagePhotoData *ragePhotoData)
{
RagePhoto *ragePhoto = static_cast<RagePhoto*>(*instance);
ragePhoto->setData(ragePhotoData, true);
return ragePhoto->setData(ragePhotoData, true);
}
void ragephoto_setphotodatac(ragephoto_t instance, RagePhotoData *ragePhotoData)
ragephoto_bool_t ragephoto_setphotodatac(ragephoto_t instance, RagePhotoData *ragePhotoData)
{
RagePhoto *ragePhoto = static_cast<RagePhoto*>(instance);
ragePhoto->setData(ragePhotoData, false);
return ragePhoto->setData(ragePhotoData, false);
}
void ragephoto_setphotodesc(ragephoto_t instance, const char *description, uint32_t bufferSize)