diff --git a/docs/debugger/debug-interface-access/idiadatasource-loaddatafromistream.md b/docs/debugger/debug-interface-access/idiadatasource-loaddatafromistream.md index 2b6a5c81941..a354da9d2bf 100644 --- a/docs/debugger/debug-interface-access/idiadatasource-loaddatafromistream.md +++ b/docs/debugger/debug-interface-access/idiadatasource-loaddatafromistream.md @@ -29,7 +29,7 @@ HRESULT loadDataFromIStream ( `pIStream` -[in] An object representing the data stream to use. +[in] An [IStream](/windows/desktop/api/objidl/nn-objidl-istream) object representing the data stream to use. ## Return Value @@ -43,7 +43,7 @@ If successful, returns `S_OK`; otherwise, returns an error code. The following t ## Remarks -This method allows the debug data for an executable to be obtained through an object. +This method allows the debug data for an executable to be obtained through an [IStream](/windows/desktop/api/objidl/nn-objidl-istream) object. To load with prefetching, use the [`IDiaDataSourceEx::loadDataFromIStreamEx`](../../debugger/debug-interface-access/idiadatasourceex-loaddatafromistreamex.md) method. diff --git a/docs/debugger/debug-interface-access/idiadatasourceex-loaddatafromistreamex.md b/docs/debugger/debug-interface-access/idiadatasourceex-loaddatafromistreamex.md index 47cee8cad40..f9bafee3c17 100644 --- a/docs/debugger/debug-interface-access/idiadatasourceex-loaddatafromistreamex.md +++ b/docs/debugger/debug-interface-access/idiadatasourceex-loaddatafromistreamex.md @@ -30,11 +30,11 @@ HRESULT loadDataFromIStreamEx ( `pIStream` -[in] An object representing the data stream to use. +[in] An [IStream](/windows/desktop/api/objidl/nn-objidl-istream) object representing the data stream to use. `fPdbPrefetching` -[in] If set to `TRUE`, adjacent debug records are prefetched into memory, potentially replacing many smaller file I/O operations with fewer, larger operations, and thus improving overall throughput as those records are subsequently accessed, at the expense of potentially increased memory usage. If set to `FALSE`, this behaves identically to [`IDiaDataSource::loadDataFromIStream`](../../debugger/debug-interface-access/idiadatasource-loaddatafromistream.md). If set to some other value, behavior is unspecified. +[in] If set to `TRUE`, adjacent debug records are prefetched into memory, potentially replacing many smaller file I/O operations with fewer, larger operations, and thus improving overall throughput as those records are subsequently accessed, at the expense of potentially increased memory usage. If set to `FALSE`, this function behaves identically to [`IDiaDataSource::loadDataFromIStream`](../../debugger/debug-interface-access/idiadatasource-loaddatafromistream.md). If set to some other value, behavior is unspecified. ## Return Value @@ -44,11 +44,11 @@ If successful, returns `S_OK`; otherwise, returns an error code. The following t |-----------|-----------------| |`E_PDB_FORMAT`|Attempted to access a file with an obsolete format.| |`E_INVALIDARG`|Invalid parameter.| -|`E_UNEXPECTED`|Data source has already been prepared.| +|`E_UNEXPECTED`|Data source is already prepared.| ## Remarks -This method allows the debug data for an executable to be obtained from memory through an object. +This method allows the debug data for an executable to be obtained from memory through an [IStream](/windows/desktop/api/objidl/nn-objidl-istream) object. To load a .pdb file without validation, use the [`IDiaDataSourceEx::loadDataFromPdbEx`](../../debugger/debug-interface-access/idiadatasourceex-loaddatafrompdbex.md) method. diff --git a/docs/debugger/protected-mode-dump-debugging.md b/docs/debugger/protected-mode-dump-debugging.md index 349f850473e..fc2d196a58e 100644 --- a/docs/debugger/protected-mode-dump-debugging.md +++ b/docs/debugger/protected-mode-dump-debugging.md @@ -24,6 +24,7 @@ Protected mode isolates the debugger process from the rest of the system using A * The **Tasks** view will be empty in the Parallel Stacks window * The debugger **Tasks** window (**Debug->Windows->Tasks**) will be empty * Protected mode isn't enabled for Diagnostic Analysis and Debug Managed Memory +* Source Server isn't available in protected mode ## Disable protected mode