Specifies the type of a symbol.
Namespace: SharpAssembler.Core.SymbolsAssembly: 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 name | Value | Description | |
|---|---|---|---|
| None | 0 | The symbol's type is not specified. | |
| Private | 1 | The symbol is local to the object file. | |
| Public | 2 | The symbol is defined and available for other object files to refer to. | |
| Weak | 3 | Similar to Public but with less precedence. | |
| Extern | 4 | The symbol is not defined but available in another object file. |