Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
WorkshopCatalogue.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12sealed class WorkshopCatalogue
13{
14 private void WorkshopCatalogue();
15 private void ~WorkshopCatalogue();
16
18 proto external int MaxPageSize();
19 /*
20 \brief Request specific page with items
21 \param pCallback Is script callback where you will receive result/error when request finishes
22 \param pParams Are params of PageParams type to specify which page to request
23 \param bClearCache Specify is cached pages should be cleared and force request to be sent again to retrieve latest data
24 */
25 proto external void RequestPage(BackendCallback pCallback, notnull PageParams pParams, bool bClearCache);
26 /*
27 \brief Get total item count on all pages
28 \returns total item count
29 */
30 proto external int GetTotalItemCount();
31 /*
32 \brief Get page count
33 \returns page count
34 */
35 proto external int GetPageCount();
37 [Obsolete("Use SetPageSize() instead!")]
38 proto external void SetPageItems(int iCount);
40 proto external void SetPageSize(int iCount);
41 /*
42 \brief Get current page number
43 \return Current page number
44 */
45 proto external int GetPage();
46 /*
47 \brief Get item count on actual page
48 \return Current count of items on active page
49 */
50 proto external int GetPageItemCount();
51 /*
52 \brief Get page content.
53 \param items Array of Workshop Items
54 \return Current count of items on active page
55 */
56 proto external int GetPageItems(out notnull array<WorkshopItem> items);
57}
58