blob: 0c4d945074a136dc2c2e42a0916bb561f1f8e76d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "SenClientCultureBackCompat_SenCore.h"
#include "SenClientNews.h"
namespace Sentient
{
__declspec(deprecated("This function is deprecated. See the function body for an example of using the new API."))
__inline HRESULT SenGetTickerMessage(
int userIndex,
const SenCultureInfo *culture,
SenTickerData *out_tickerData )
{
return SenGetTickerMessage(userIndex, out_tickerData);
}
}
|