コード例 #1
0
        internal bool BGetSessionClientResolution(RemotePlaySessionID_t unSessionID, ref int pnResolutionX, ref int pnResolutionY)
        {
            var returnValue = _BGetSessionClientResolution(Self, unSessionID, ref pnResolutionX, ref pnResolutionY);

            return(returnValue);
        }
コード例 #2
0
        internal SteamDeviceFormFactor GetSessionClientFormFactor(RemotePlaySessionID_t unSessionID)
        {
            var returnValue = _GetSessionClientFormFactor(Self, unSessionID);

            return(returnValue);
        }
コード例 #3
0
 private static extern bool _BGetSessionClientResolution(IntPtr self, RemotePlaySessionID_t unSessionID, ref int pnResolutionX, ref int pnResolutionY);
コード例 #4
0
        internal string GetSessionClientName(RemotePlaySessionID_t unSessionID)
        {
            var returnValue = _GetSessionClientName(Self, unSessionID);

            return(returnValue);
        }
コード例 #5
0
 private static extern SteamDeviceFormFactor _GetSessionClientFormFactor(IntPtr self, RemotePlaySessionID_t unSessionID);
コード例 #6
0
        internal SteamId GetSessionSteamID(RemotePlaySessionID_t unSessionID)
        {
            var returnValue = _GetSessionSteamID(Self, unSessionID);

            return(returnValue);
        }
コード例 #7
0
 private static extern Utf8StringPointer _GetSessionClientName(IntPtr self, RemotePlaySessionID_t unSessionID);
コード例 #8
0
 private static extern SteamId _GetSessionSteamID(IntPtr self, RemotePlaySessionID_t unSessionID);
コード例 #9
0
 public static bool BGetSessionClientResolution(RemotePlaySessionID_t unSessionID, out int pnResolutionX, out int pnResolutionY)
 {
     InteropHelp.TestIfAvailableClient();
     return(NativeMethods.ISteamRemotePlay_BGetSessionClientResolution(CSteamAPIContext.GetSteamRemotePlay(), unSessionID, out pnResolutionX, out pnResolutionY));
 }
コード例 #10
0
 public static ESteamDeviceFormFactor GetSessionClientFormFactor(RemotePlaySessionID_t unSessionID)
 {
     InteropHelp.TestIfAvailableClient();
     return(NativeMethods.ISteamRemotePlay_GetSessionClientFormFactor(CSteamAPIContext.GetSteamRemotePlay(), unSessionID));
 }
コード例 #11
0
 public static string GetSessionClientName(RemotePlaySessionID_t unSessionID)
 {
     InteropHelp.TestIfAvailableClient();
     return(InteropHelp.PtrToStringUTF8(NativeMethods.ISteamRemotePlay_GetSessionClientName(CSteamAPIContext.GetSteamRemotePlay(), unSessionID)));
 }
コード例 #12
0
 public static CSteamID GetSessionSteamID(RemotePlaySessionID_t unSessionID)
 {
     InteropHelp.TestIfAvailableClient();
     return((CSteamID)NativeMethods.ISteamRemotePlay_GetSessionSteamID(CSteamAPIContext.GetSteamRemotePlay(), unSessionID));
 }