24 lines · c
1// This is a truncated version of lldb-defines.h used to test that the script2// convert-lldb-header-to-rpc-header.py works correctly. The script changes LLDB references in3// the original file to RPC references.4 5// The include guard should change from LLDB_LLDB to LLDB_RPC.6// LLDB_LLDB_DEFINES_H -> LLDB_RPC_DEFINES_H7#ifndef LLDB_LLDB_DEFINES_H8#define LLDB_LLDB_DEFINES_H9 10// Includes of public main LLDB headers should change to their RPC equivalents:11// "lldb/lldb-types.h" -> "lldb-rpc-types.h"12#include "lldb/lldb-types.h"13 14// The LLDB version must change from LLDB to LLDB_RPC15// LLDB_VERSION -> LLDB_RPC_VERSION16#define LLDB_VERSION 2117#define LLDB_REVISION 1218#define LLDB_VERSION_STRING "21.0.12"19 20// The comment that closes the include guard must change in the same way21// the original guard did.22// #endif // LLDB_LLDB_DEFINES_H -> #endif // LLDB_RPC_DEFINES_H23#endif // LLDB_LLDB_DEFINES_H24