Skip to main content
Module

x/libclang/mod.ts>CXLinkageKind

Deno FFI bindings for libclang
Latest
enum CXLinkageKind
Re-export
import { CXLinkageKind } from "https://deno.land/x/libclang@1.0.0-beta.8/mod.ts";

Describe the linkage of the entity referred to by a cursor.

Members

CXLinkage_External

This is the linkage for entities with true, external linkage.

CXLinkage_Internal

This is the linkage for static variables and static functions.

CXLinkage_Invalid

This value indicates that no linkage information is available for a provided CXCursor.

CXLinkage_NoLinkage

This is the linkage for variables, parameters, and so on that have automatic storage. This covers normal (non-extern) local variables.

CXLinkage_UniqueExternal

This is the linkage for entities with external linkage that live in C++ anonymous namespaces.