1 //===-- RNBServices.h -------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 //  Created by Christopher Friesen on 3/21/08.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLDB_TOOLS_DEBUGSERVER_SOURCE_RNBSERVICES_H
14 #define LLDB_TOOLS_DEBUGSERVER_SOURCE_RNBSERVICES_H
15 
16 #include "RNBDefs.h"
17 #include <string>
18 
19 #define DTSERVICES_APP_FRONTMOST_KEY CFSTR("isFrontApp")
20 #define DTSERVICES_APP_PATH_KEY CFSTR("executablePath")
21 #define DTSERVICES_APP_ICON_PATH_KEY CFSTR("iconPath")
22 #define DTSERVICES_APP_DISPLAY_NAME_KEY CFSTR("displayName")
23 #define DTSERVICES_APP_PID_KEY CFSTR("pid")
24 
25 int ListApplications(std::string &plist, bool opt_runningApps,
26                      bool opt_debuggable);
27 
28 #endif // LLDB_TOOLS_DEBUGSERVER_SOURCE_RNBSERVICES_H
29