diff options
| author | Matthew Collins <[email protected]> | 2021-04-04 01:37:35 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-04 01:37:35 +0100 |
| commit | f7ba656db68dbf8bc44e36b322ff509558374580 (patch) | |
| tree | 6fa80948a47829e17009d8e176f741c0cb49293a /src | |
| parent | Merge pull request #44 from WilliamVenner/connection_callbacks (diff) | |
| parent | kNumUGCResultsPerPage -> RESULTS_PER_PAGE (diff) | |
| download | steamworks-rs-f7ba656db68dbf8bc44e36b322ff509558374580.tar.xz steamworks-rs-f7ba656db68dbf8bc44e36b322ff509558374580.zip | |
Merge pull request #40 from WilliamVenner/expose_ugc_page_len
Export `sys::kNumUGCResultsPerPage`
Diffstat (limited to 'src')
| -rw-r--r-- | src/ugc.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -9,6 +9,8 @@ use std::mem; use std::path::Path; use std::os::raw::c_char; +pub const RESULTS_PER_PAGE: u32 = sys::kNumUGCResultsPerPage as u32; + pub struct UGC<Manager> { pub(crate) ugc: *mut sys::ISteamUGC, pub(crate) inner: Arc<Inner<Manager>>, |