diff --git a/Generator/CodeParser/CodeParser.cs b/Generator/CodeParser/CodeParser.cs index 7c03b15..425572b 100644 --- a/Generator/CodeParser/CodeParser.cs +++ b/Generator/CodeParser/CodeParser.cs @@ -115,27 +115,6 @@ namespace Generator } } - // - // Find CALL_RESULTs - // - { - var r = new Regex( @"CALL_RESULT\( (.+) \)(?:.+)?\n(?:.+)virtual\s+SteamAPICall_t\s+(\w+)\(" ); - var ma = r.Matches( Content ); - - foreach ( Match m in ma ) - { - var s = def.structs.Single( x => x.Name == m.Groups[1].Value ); - s.IsCallResult = true; - - foreach ( var t in def.methods.Where( x => x.Name == m.Groups[2].Value ) ) - { - if ( !string.IsNullOrEmpty( t.CallResult ) ) continue; - - t.CallResult = s.Name; - } - } - } - // // Find missing structs // diff --git a/Generator/SteamApiDefinition.cs b/Generator/SteamApiDefinition.cs index fa159df..dd61a92 100644 --- a/Generator/SteamApiDefinition.cs +++ b/Generator/SteamApiDefinition.cs @@ -53,8 +53,6 @@ namespace Generator public StructFields[] Fields { get; set; } public string CallbackId { get; set; } - public bool IsCallResult { get; set; } - public bool IsPack4OnWindows {