444 lines
17 KiB
C#
444 lines
17 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Steamworks.Data;
|
|
|
|
|
|
namespace Steamworks
|
|
{
|
|
internal class ISteamApps : SteamInterface
|
|
{
|
|
public override string InterfaceName => "STEAMAPPS_INTERFACE_VERSION008";
|
|
|
|
public override void InitInternals()
|
|
{
|
|
_BIsSubscribed = Marshal.GetDelegateForFunctionPointer<FBIsSubscribed>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 0 ) ) );
|
|
_BIsLowViolence = Marshal.GetDelegateForFunctionPointer<FBIsLowViolence>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 8 ) ) );
|
|
_BIsCybercafe = Marshal.GetDelegateForFunctionPointer<FBIsCybercafe>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 16 ) ) );
|
|
_BIsVACBanned = Marshal.GetDelegateForFunctionPointer<FBIsVACBanned>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 24 ) ) );
|
|
_GetCurrentGameLanguage = Marshal.GetDelegateForFunctionPointer<FGetCurrentGameLanguage>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 32 ) ) );
|
|
_GetAvailableGameLanguages = Marshal.GetDelegateForFunctionPointer<FGetAvailableGameLanguages>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 40 ) ) );
|
|
_BIsSubscribedApp = Marshal.GetDelegateForFunctionPointer<FBIsSubscribedApp>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 48 ) ) );
|
|
_BIsDlcInstalled = Marshal.GetDelegateForFunctionPointer<FBIsDlcInstalled>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 56 ) ) );
|
|
_GetEarliestPurchaseUnixTime = Marshal.GetDelegateForFunctionPointer<FGetEarliestPurchaseUnixTime>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 64 ) ) );
|
|
_BIsSubscribedFromFreeWeekend = Marshal.GetDelegateForFunctionPointer<FBIsSubscribedFromFreeWeekend>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 72 ) ) );
|
|
_GetDLCCount = Marshal.GetDelegateForFunctionPointer<FGetDLCCount>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 80 ) ) );
|
|
_BGetDLCDataByIndex = Marshal.GetDelegateForFunctionPointer<FBGetDLCDataByIndex>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 88 ) ) );
|
|
_InstallDLC = Marshal.GetDelegateForFunctionPointer<FInstallDLC>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 96 ) ) );
|
|
_UninstallDLC = Marshal.GetDelegateForFunctionPointer<FUninstallDLC>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 104 ) ) );
|
|
_RequestAppProofOfPurchaseKey = Marshal.GetDelegateForFunctionPointer<FRequestAppProofOfPurchaseKey>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 112 ) ) );
|
|
_GetCurrentBetaName = Marshal.GetDelegateForFunctionPointer<FGetCurrentBetaName>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 120 ) ) );
|
|
_MarkContentCorrupt = Marshal.GetDelegateForFunctionPointer<FMarkContentCorrupt>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 128 ) ) );
|
|
_GetInstalledDepots = Marshal.GetDelegateForFunctionPointer<FGetInstalledDepots>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 136 ) ) );
|
|
_GetAppInstallDir = Marshal.GetDelegateForFunctionPointer<FGetAppInstallDir>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 144 ) ) );
|
|
_BIsAppInstalled = Marshal.GetDelegateForFunctionPointer<FBIsAppInstalled>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 152 ) ) );
|
|
_GetAppOwner = Marshal.GetDelegateForFunctionPointer<FGetAppOwner>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 160 ) ) );
|
|
_GetLaunchQueryParam = Marshal.GetDelegateForFunctionPointer<FGetLaunchQueryParam>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 168 ) ) );
|
|
_GetDlcDownloadProgress = Marshal.GetDelegateForFunctionPointer<FGetDlcDownloadProgress>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 176 ) ) );
|
|
_GetAppBuildId = Marshal.GetDelegateForFunctionPointer<FGetAppBuildId>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 184 ) ) );
|
|
_RequestAllProofOfPurchaseKeys = Marshal.GetDelegateForFunctionPointer<FRequestAllProofOfPurchaseKeys>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 192 ) ) );
|
|
_GetFileDetails = Marshal.GetDelegateForFunctionPointer<FGetFileDetails>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 200 ) ) );
|
|
_GetLaunchCommandLine = Marshal.GetDelegateForFunctionPointer<FGetLaunchCommandLine>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 208 ) ) );
|
|
_BIsSubscribedFromFamilySharing = Marshal.GetDelegateForFunctionPointer<FBIsSubscribedFromFamilySharing>( Marshal.ReadIntPtr( VTable, Platform.MemoryOffset( 216 ) ) );
|
|
}
|
|
internal override void Shutdown()
|
|
{
|
|
base.Shutdown();
|
|
|
|
_BIsSubscribed = null;
|
|
_BIsLowViolence = null;
|
|
_BIsCybercafe = null;
|
|
_BIsVACBanned = null;
|
|
_GetCurrentGameLanguage = null;
|
|
_GetAvailableGameLanguages = null;
|
|
_BIsSubscribedApp = null;
|
|
_BIsDlcInstalled = null;
|
|
_GetEarliestPurchaseUnixTime = null;
|
|
_BIsSubscribedFromFreeWeekend = null;
|
|
_GetDLCCount = null;
|
|
_BGetDLCDataByIndex = null;
|
|
_InstallDLC = null;
|
|
_UninstallDLC = null;
|
|
_RequestAppProofOfPurchaseKey = null;
|
|
_GetCurrentBetaName = null;
|
|
_MarkContentCorrupt = null;
|
|
_GetInstalledDepots = null;
|
|
_GetAppInstallDir = null;
|
|
_BIsAppInstalled = null;
|
|
_GetAppOwner = null;
|
|
_GetLaunchQueryParam = null;
|
|
_GetDlcDownloadProgress = null;
|
|
_GetAppBuildId = null;
|
|
_RequestAllProofOfPurchaseKeys = null;
|
|
_GetFileDetails = null;
|
|
_GetLaunchCommandLine = null;
|
|
_BIsSubscribedFromFamilySharing = null;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBIsSubscribed( IntPtr self );
|
|
private FBIsSubscribed _BIsSubscribed;
|
|
|
|
#endregion
|
|
internal bool BIsSubscribed()
|
|
{
|
|
var returnValue = _BIsSubscribed( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBIsLowViolence( IntPtr self );
|
|
private FBIsLowViolence _BIsLowViolence;
|
|
|
|
#endregion
|
|
internal bool BIsLowViolence()
|
|
{
|
|
var returnValue = _BIsLowViolence( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBIsCybercafe( IntPtr self );
|
|
private FBIsCybercafe _BIsCybercafe;
|
|
|
|
#endregion
|
|
internal bool BIsCybercafe()
|
|
{
|
|
var returnValue = _BIsCybercafe( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBIsVACBanned( IntPtr self );
|
|
private FBIsVACBanned _BIsVACBanned;
|
|
|
|
#endregion
|
|
internal bool BIsVACBanned()
|
|
{
|
|
var returnValue = _BIsVACBanned( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate Utf8StringPointer FGetCurrentGameLanguage( IntPtr self );
|
|
private FGetCurrentGameLanguage _GetCurrentGameLanguage;
|
|
|
|
#endregion
|
|
internal string GetCurrentGameLanguage()
|
|
{
|
|
var returnValue = _GetCurrentGameLanguage( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate Utf8StringPointer FGetAvailableGameLanguages( IntPtr self );
|
|
private FGetAvailableGameLanguages _GetAvailableGameLanguages;
|
|
|
|
#endregion
|
|
internal string GetAvailableGameLanguages()
|
|
{
|
|
var returnValue = _GetAvailableGameLanguages( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBIsSubscribedApp( IntPtr self, AppId appID );
|
|
private FBIsSubscribedApp _BIsSubscribedApp;
|
|
|
|
#endregion
|
|
internal bool BIsSubscribedApp( AppId appID )
|
|
{
|
|
var returnValue = _BIsSubscribedApp( Self, appID );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBIsDlcInstalled( IntPtr self, AppId appID );
|
|
private FBIsDlcInstalled _BIsDlcInstalled;
|
|
|
|
#endregion
|
|
internal bool BIsDlcInstalled( AppId appID )
|
|
{
|
|
var returnValue = _BIsDlcInstalled( Self, appID );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate uint FGetEarliestPurchaseUnixTime( IntPtr self, AppId nAppID );
|
|
private FGetEarliestPurchaseUnixTime _GetEarliestPurchaseUnixTime;
|
|
|
|
#endregion
|
|
internal uint GetEarliestPurchaseUnixTime( AppId nAppID )
|
|
{
|
|
var returnValue = _GetEarliestPurchaseUnixTime( Self, nAppID );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBIsSubscribedFromFreeWeekend( IntPtr self );
|
|
private FBIsSubscribedFromFreeWeekend _BIsSubscribedFromFreeWeekend;
|
|
|
|
#endregion
|
|
internal bool BIsSubscribedFromFreeWeekend()
|
|
{
|
|
var returnValue = _BIsSubscribedFromFreeWeekend( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate int FGetDLCCount( IntPtr self );
|
|
private FGetDLCCount _GetDLCCount;
|
|
|
|
#endregion
|
|
internal int GetDLCCount()
|
|
{
|
|
var returnValue = _GetDLCCount( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBGetDLCDataByIndex( IntPtr self, int iDLC, ref AppId pAppID, [MarshalAs( UnmanagedType.U1 )] ref bool pbAvailable, IntPtr pchName, int cchNameBufferSize );
|
|
private FBGetDLCDataByIndex _BGetDLCDataByIndex;
|
|
|
|
#endregion
|
|
internal bool BGetDLCDataByIndex( int iDLC, ref AppId pAppID, [MarshalAs( UnmanagedType.U1 )] ref bool pbAvailable, out string pchName )
|
|
{
|
|
IntPtr mempchName = Helpers.TakeMemory();
|
|
var returnValue = _BGetDLCDataByIndex( Self, iDLC, ref pAppID, ref pbAvailable, mempchName, (1024 * 32) );
|
|
pchName = Helpers.MemoryToString( mempchName );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate void FInstallDLC( IntPtr self, AppId nAppID );
|
|
private FInstallDLC _InstallDLC;
|
|
|
|
#endregion
|
|
internal void InstallDLC( AppId nAppID )
|
|
{
|
|
_InstallDLC( Self, nAppID );
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate void FUninstallDLC( IntPtr self, AppId nAppID );
|
|
private FUninstallDLC _UninstallDLC;
|
|
|
|
#endregion
|
|
internal void UninstallDLC( AppId nAppID )
|
|
{
|
|
_UninstallDLC( Self, nAppID );
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate void FRequestAppProofOfPurchaseKey( IntPtr self, AppId nAppID );
|
|
private FRequestAppProofOfPurchaseKey _RequestAppProofOfPurchaseKey;
|
|
|
|
#endregion
|
|
internal void RequestAppProofOfPurchaseKey( AppId nAppID )
|
|
{
|
|
_RequestAppProofOfPurchaseKey( Self, nAppID );
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FGetCurrentBetaName( IntPtr self, IntPtr pchName, int cchNameBufferSize );
|
|
private FGetCurrentBetaName _GetCurrentBetaName;
|
|
|
|
#endregion
|
|
internal bool GetCurrentBetaName( out string pchName )
|
|
{
|
|
IntPtr mempchName = Helpers.TakeMemory();
|
|
var returnValue = _GetCurrentBetaName( Self, mempchName, (1024 * 32) );
|
|
pchName = Helpers.MemoryToString( mempchName );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FMarkContentCorrupt( IntPtr self, [MarshalAs( UnmanagedType.U1 )] bool bMissingFilesOnly );
|
|
private FMarkContentCorrupt _MarkContentCorrupt;
|
|
|
|
#endregion
|
|
internal bool MarkContentCorrupt( [MarshalAs( UnmanagedType.U1 )] bool bMissingFilesOnly )
|
|
{
|
|
var returnValue = _MarkContentCorrupt( Self, bMissingFilesOnly );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate uint FGetInstalledDepots( IntPtr self, AppId appID, [In,Out] DepotId_t[] pvecDepots, uint cMaxDepots );
|
|
private FGetInstalledDepots _GetInstalledDepots;
|
|
|
|
#endregion
|
|
internal uint GetInstalledDepots( AppId appID, [In,Out] DepotId_t[] pvecDepots, uint cMaxDepots )
|
|
{
|
|
var returnValue = _GetInstalledDepots( Self, appID, pvecDepots, cMaxDepots );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate uint FGetAppInstallDir( IntPtr self, AppId appID, IntPtr pchFolder, uint cchFolderBufferSize );
|
|
private FGetAppInstallDir _GetAppInstallDir;
|
|
|
|
#endregion
|
|
internal uint GetAppInstallDir( AppId appID, out string pchFolder )
|
|
{
|
|
IntPtr mempchFolder = Helpers.TakeMemory();
|
|
var returnValue = _GetAppInstallDir( Self, appID, mempchFolder, (1024 * 32) );
|
|
pchFolder = Helpers.MemoryToString( mempchFolder );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBIsAppInstalled( IntPtr self, AppId appID );
|
|
private FBIsAppInstalled _BIsAppInstalled;
|
|
|
|
#endregion
|
|
internal bool BIsAppInstalled( AppId appID )
|
|
{
|
|
var returnValue = _BIsAppInstalled( Self, appID );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
#if PLATFORM_WIN
|
|
private delegate void FGetAppOwner( IntPtr self, ref SteamId retVal );
|
|
#else
|
|
private delegate SteamId FGetAppOwner( IntPtr self );
|
|
#endif
|
|
private FGetAppOwner _GetAppOwner;
|
|
|
|
#endregion
|
|
internal SteamId GetAppOwner()
|
|
{
|
|
#if PLATFORM_WIN
|
|
var retVal = default( SteamId );
|
|
_GetAppOwner( Self, ref retVal );
|
|
return retVal;
|
|
#else
|
|
var returnValue = _GetAppOwner( Self );
|
|
return returnValue;
|
|
#endif
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate Utf8StringPointer FGetLaunchQueryParam( IntPtr self, [MarshalAs( UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof( Utf8StringToNative ) )] string pchKey );
|
|
private FGetLaunchQueryParam _GetLaunchQueryParam;
|
|
|
|
#endregion
|
|
internal string GetLaunchQueryParam( [MarshalAs( UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof( Utf8StringToNative ) )] string pchKey )
|
|
{
|
|
var returnValue = _GetLaunchQueryParam( Self, pchKey );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FGetDlcDownloadProgress( IntPtr self, AppId nAppID, ref ulong punBytesDownloaded, ref ulong punBytesTotal );
|
|
private FGetDlcDownloadProgress _GetDlcDownloadProgress;
|
|
|
|
#endregion
|
|
internal bool GetDlcDownloadProgress( AppId nAppID, ref ulong punBytesDownloaded, ref ulong punBytesTotal )
|
|
{
|
|
var returnValue = _GetDlcDownloadProgress( Self, nAppID, ref punBytesDownloaded, ref punBytesTotal );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate int FGetAppBuildId( IntPtr self );
|
|
private FGetAppBuildId _GetAppBuildId;
|
|
|
|
#endregion
|
|
internal int GetAppBuildId()
|
|
{
|
|
var returnValue = _GetAppBuildId( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate void FRequestAllProofOfPurchaseKeys( IntPtr self );
|
|
private FRequestAllProofOfPurchaseKeys _RequestAllProofOfPurchaseKeys;
|
|
|
|
#endregion
|
|
internal void RequestAllProofOfPurchaseKeys()
|
|
{
|
|
_RequestAllProofOfPurchaseKeys( Self );
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate SteamAPICall_t FGetFileDetails( IntPtr self, [MarshalAs( UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof( Utf8StringToNative ) )] string pszFileName );
|
|
private FGetFileDetails _GetFileDetails;
|
|
|
|
#endregion
|
|
internal async Task<FileDetailsResult_t?> GetFileDetails( [MarshalAs( UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof( Utf8StringToNative ) )] string pszFileName )
|
|
{
|
|
var returnValue = _GetFileDetails( Self, pszFileName );
|
|
return await FileDetailsResult_t.GetResultAsync( returnValue );
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
private delegate int FGetLaunchCommandLine( IntPtr self, IntPtr pszCommandLine, int cubCommandLine );
|
|
private FGetLaunchCommandLine _GetLaunchCommandLine;
|
|
|
|
#endregion
|
|
internal int GetLaunchCommandLine( out string pszCommandLine )
|
|
{
|
|
IntPtr mempszCommandLine = Helpers.TakeMemory();
|
|
var returnValue = _GetLaunchCommandLine( Self, mempszCommandLine, (1024 * 32) );
|
|
pszCommandLine = Helpers.MemoryToString( mempszCommandLine );
|
|
return returnValue;
|
|
}
|
|
|
|
#region FunctionMeta
|
|
[UnmanagedFunctionPointer( Platform.MemberConvention )]
|
|
[return: MarshalAs( UnmanagedType.I1 )]
|
|
private delegate bool FBIsSubscribedFromFamilySharing( IntPtr self );
|
|
private FBIsSubscribedFromFamilySharing _BIsSubscribedFromFamilySharing;
|
|
|
|
#endregion
|
|
internal bool BIsSubscribedFromFamilySharing()
|
|
{
|
|
var returnValue = _BIsSubscribedFromFamilySharing( Self );
|
|
return returnValue;
|
|
}
|
|
|
|
}
|
|
}
|