1// Licensed to the .NET Foundation under one or more agreements.
2// The .NET Foundation licenses this file to you under the MIT license.
3// See the LICENSE file in the project root for more information.
4
5#include "sosplugin.h"
6
7namespace lldb {
8 bool PluginInitialize (lldb::SBDebugger debugger);
9}
10
11bool
12lldb::PluginInitialize (lldb::SBDebugger debugger)
13{
14 sosCommandInitialize(debugger);
15 setclrpathCommandInitialize(debugger);
16 setsostidCommandInitialize(debugger);
17 return true;
18}
19