Summary: This uses the .clang-format at the root of the LLDB repo and is just a mechanical change that precedes more work in this file. Reviewers: clayborg, zturner Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D12217 llvm-svn: 245634
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
//===-- DynamicLoaderWindowsDYLDh ----------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef liblldb_Plugins_Process_Windows_DynamicLoaderWindowsDYLD_H_
|
|
#define liblldb_Plugins_Process_Windows_DynamicLoaderWindowsDYLD_H_
|
|
|
|
#include "lldb/lldb-forward.h"
|
|
#include "lldb/Target/DynamicLoader.h"
|
|
|
|
namespace lldb_private
|
|
{
|
|
|
|
class DynamicLoaderWindowsDYLD : public DynamicLoader
|
|
{
|
|
public:
|
|
static void Initialize();
|
|
static void Terminate();
|
|
static ConstString GetPluginNameStatic();
|
|
static const char *GetPluginDescriptionStatic();
|
|
|
|
DynamicLoaderWindowsDYLD(Process *process);
|
|
virtual ~DynamicLoaderWindowsDYLD();
|
|
|
|
static DynamicLoader *CreateInstance(Process *process, bool force);
|
|
|
|
void DidAttach() override;
|
|
void DidLaunch() override;
|
|
Error CanLoadImage() override;
|
|
lldb::ThreadPlanSP GetStepThroughTrampolinePlan(Thread &thread, bool stop) override;
|
|
|
|
ConstString GetPluginName() override;
|
|
uint32_t GetPluginVersion() override;
|
|
};
|
|
}
|
|
|
|
#endif
|