PAVE [OBSOLETE] .X (Examine Symbols)

Note

This command is not supported in Visual Studio 2012.

Displays all the public symbols for the specified module that match the specified pattern.

.X { * | module!symbol }

Arguments

  • *
    Displays the addresses and names of all local variables.

  • module
    Specifies the module to search. The module can be a .exe, .dll, or .sys file. This argument may contain wildcards.

  • symbol
    Specifies a pattern that the symbol must contain. Symbol matching is not case-sensitive. This argument may contain wildcards.

Example

The following example finds all symbols in MyModule that contain spin.

X MyModule!*spin*

The following example finds the symbols LaunchAlert and LaunchAbort in MyModule.

X MyModule!LaunchA??rt

The following example finds all symbols in MyModule.

X MyModule!*

The following example displays the addresses and names of all local variables.

X *

See Also

Other Resources

PAVE [OBSOLETE] Immediate Window Commands

PAVE [OBSOLETE] NTSD Command Support