Files
clang-p2996/lldb/tools/lldb-mi/MIUtilSystemWindows.h
Deepak Panickal d249928b84 Add new MI commands, features and fixes to the lldb-mi driver.
- Can now load an executable directly as an argument.
- Fixes towards supporting local debugging.
- Fixes for stack-list-arguments, data-evaluate-expression, environment-cd, stack-list-locals, interpreter-exec.
- Fix breakpoint event handling.
- Support dynamic loading of libraries using the search paths provided by Eclipse.

llvm-svn: 215223
2014-08-08 16:47:42 +00:00

57 lines
1.6 KiB
C++

//===-- MIUtilSystemWindows.h -----------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//++
// File: MIUtilSystemWindows.h
//
// Overview: CMIUtilSystemWindows interface.
//
// Environment: Compilers: Visual C++ 12.
// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
// Libraries: See MIReadmetxt.
//
// Copyright: None.
//--
#pragma once
#if defined( _MSC_VER )
// In-house headers:
#include "MIUtilString.h"
//++ ============================================================================
// Details: MI common code utility class. Used to set or retrieve information
// about the current system or user.
// *** If you change, remove or add functionality it must be replicated
// *** for the all platforms supported; Windows, OSX, LINUX
// Gotchas: None.
// Authors: Illya Rudkin 29/01/2014.
// Changes: None.
//--
class CMIUtilSystemWindows
{
// Methods:
public:
/* ctor */ CMIUtilSystemWindows( void );
bool GetOSErrorMsg( const MIint vError, CMIUtilString & vrwErrorMsg ) const;
CMIUtilString GetOSLastError( void ) const;
bool GetExecutablesPath( CMIUtilString & vrwFileNamePath ) const;
bool GetLogFilesPath( CMIUtilString & vrwFileNamePath ) const;
// Overrideable:
public:
// From CMICmnBase
/* dtor */ virtual ~CMIUtilSystemWindows( void );
};
typedef CMIUtilSystemWindows CMIUtilSystem;
#endif // #if defined( _MSC_VER )