[This is preliminary documentation and is subject to change.]
Converts a pointer into an address for use with MPI. In many cases, this operation is simply a
cast from the pointer's value to an integer.
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 0.8.0.0 (0.8.0.0)
Syntax
| C# |
|---|
public static int MPI_Address( IntPtr location, out IntPtr address ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function MPI_Address ( _ location As IntPtr, _ <OutAttribute> ByRef address As IntPtr _ ) As Integer |
| Visual C++ |
|---|
public: static int MPI_Address( IntPtr location, [OutAttribute] IntPtr% address ) |
Parameters
- location
- Type: System..::.IntPtr
A pointer to the memory whose address will be returned.
- address
- Type:
System..::.IntPtr
%
A pointer to the integer address value that will be replaced with the address pointed to by location.