brintos

brintos / llvm-project-archived public Read only

0
0
Text · 957 B · 50476c4 Raw
23 lines · c
1// This is a truncated version of SBDefines.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_API_SBDEFINES_H -> LLDB_RPC_SBDEFINES_H7#ifndef LLDB_API_SBDEFINES_H8#define LLDB_API_SBDEFINES_H9 10// Includes of public main LLDB headers should change to their RPC equivalents:11// "lldb/lldb-defines.h" -> "lldb-rpc-defines.h"12// Also, the includes for lldb-forward.h and lldb-versioning.h should be removed.13#include "lldb/lldb-defines.h"14#include "lldb/lldb-enumerations.h"15#include "lldb/lldb-forward.h"16#include "lldb/lldb-types.h"17#include "lldb/lldb-versioning.h"18 19// The comment that closes the include guard must change in the same way20// the original guard did.21// #endif // LLDB_API_SBDEFINES_H -> #endif // LLDB_RPC_API_SBDEFINES_H22#endif // LLDB_API_SBDEFINES_H23