the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 44 lines 1.4 kB view raw
1#pragma once 2 3#include "SenClientBoxArt.h" 4#include "SenClientCultureBackCompat_SenCore.h" 5 6namespace Sentient 7{ 8#pragma warning(disable:4996) 9 10 __declspec(deprecated("This function is deprecated. See the function body for an example of using the new API.")) 11 __inline HRESULT SenBoxArtDownloadExtraInfo( 12 const SenBoxArtInfo &boxArtInfo, 13 const SenCultureInfo *culture, 14 SenBoxArtExtraInfo *out_boxArtExtraInfo, 15 SenHandle *out_senHandle, 16 SenSysCompletedCallback userCallback, void *userCallbackData ) 17 { 18 return SenBoxArtDownloadExtraInfo(boxArtInfo, out_boxArtExtraInfo, out_senHandle, userCallback, userCallbackData); 19 } 20 21 __declspec(deprecated("This function is deprecated, use SenBoxArtDownloadExtraInfo instead")) 22 __inline HRESULT SenBoxArtXMLGetTitle( 23 const SenXML &senXML, 24 const SenCultureInfo *culture, 25 size_t bufferLengthMax, 26 size_t *out_bufferLength, 27 wchar_t *out_buffer ) 28 { 29 return SenBoxArtXMLGetTitle(senXML, bufferLengthMax, out_bufferLength, out_buffer); 30 } 31 32 __declspec(deprecated("This function is deprecated, use SenBoxArtDownloadExtraInfo instead")) 33 __inline HRESULT SenBoxArtXMLGetDescription( 34 const SenXML &senXML, 35 const SenCultureInfo *culture, 36 size_t bufferLengthMax, 37 size_t *out_bufferLength, 38 wchar_t *out_buffer ) 39 { 40 return SenBoxArtXMLGetDescription(senXML, bufferLengthMax, out_bufferLength, out_buffer); 41 } 42 43#pragma warning(default:4996) 44}