xref: /llvm-project/clang-tools-extra/clangd/xpc/framework/ClangdXPC.cpp (revision ffe9f00cfea35e3abd937a45ca38c605e02a9a79)
1*ffe9f00cSFangrui Song //===-- ClangdXPC.cpp --------------------------------------------*- C++-*-===//
22098b86bSDmitri Gribenko //
32098b86bSDmitri Gribenko // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
42098b86bSDmitri Gribenko // See https://llvm.org/LICENSE.txt for license information.
52098b86bSDmitri Gribenko // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
62098b86bSDmitri Gribenko //
72098b86bSDmitri Gribenko //===----------------------------------------------------------------------===//
8dca9c7cfSJan Korous 
9dca9c7cfSJan Korous /// Returns the bundle identifier of the Clangd XPC service.
clangd_xpc_get_bundle_identifier()10dca9c7cfSJan Korous extern "C" const char *clangd_xpc_get_bundle_identifier() {
11dca9c7cfSJan Korous   return "org.llvm.clangd";
12dca9c7cfSJan Korous }
13