Specifies the type of a symbol.

Namespace: SharpAssembler.Core.Symbols
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public enum SymbolType
Visual Basic
Public Enumeration SymbolType
Visual C++
public enum class SymbolType

Members

Member nameValueDescription
None0 The symbol's type is not specified.
Private1 The symbol is local to the object file.
Public2 The symbol is defined and available for other object files to refer to.
Weak3 Similar to Public but with less precedence.
Extern4 The symbol is not defined but available in another object file.

See Also