| 1016 | return true; |
| 1017 | } |
| 1018 | virtual int Execute(const CaptureOptions &) |
| 1019 | { |
| 1020 | RENDERDOC_SetDebugLogFile(conv(debuglog)); |
| 1021 | |
| 1022 | ExecuteResult result = RENDERDOC_InjectIntoProcess(pid, env, conv(capfile), cmdopts, false); |
| 1023 | |
| 1024 | if(result.result.OK()) |
| 1025 | return result.ident; |
| 1026 | |
| 1027 | return (int)result.result.code; |
| 1028 | } |
| 1029 | }; |
| 1030 | |
| 1031 | struct EmbeddedSectionCommand : public Command |
nothing calls this directly
no test coverage detected