nn_olv: More work on post API

This commit is contained in:
Exzap 2023-07-27 21:04:42 +02:00
parent 67819a68d9
commit 0d96255bae
12 changed files with 655 additions and 207 deletions

View file

@ -0,0 +1,16 @@
#pragma once
#include "Cafe/OS/libs/nn_common.h"
#include "nn_olv_Common.h"
namespace nn
{
namespace olv
{
void OfflineDB_Init();
void OfflineDB_Shutdown();
nnResult OfflineDB_DownloadPostDataListParam_DownloadPostDataList(DownloadedTopicData* downloadedTopicData, DownloadedPostData* downloadedPostData, uint32be* postCountOut, uint32 maxCount, DownloadPostDataListParam* param);
nnResult OfflineDB_DownloadPostDataListParam_DownloadExternalImageData(DownloadedDataBase* _this, void* imageDataOut, uint32be* imageSizeOut, uint32 maxSize);
}
}