Skip to content

Commit 2430742

Browse files
committed
more human edits
1 parent ad67a4c commit 2430742

File tree

49 files changed

+133
-136
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+133
-136
lines changed

docs/core/unmanaged-api/hosting/createdebugginginterfacefromversion-function.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ topic_type:
1818
---
1919
# CreateDebuggingInterfaceFromVersion Function (.NET Framework)
2020

21-
Creates an [ICorDebug](../../../framework/debuggingicordebug-interface.md) object based on the specified version information.
21+
Creates an [ICorDebug](../../../framework/debugging/icordebug-interface.md) object based on the specified version information.
2222

2323
This function is obsolete in the .NET Framework 4. Instead, to get an interface for the common language runtime (CLR) 2.0, use the [ICLRRuntimeInfo::GetInterface](iclrruntimeinfo-getinterface-method.md) method and specify the class identifier CLSID_CLRDebuggingLegacy and the interface identifier IID_ICorDebug. To get an interface for CLR 4 or later, call the [CLRCreateInstance](clrcreateinstance-function.md) function and specify the class identifier CLSID_CLRDebugging and the interface identifier IID_ICLRDebugging.
2424

@@ -35,7 +35,7 @@ HRESULT CreateDebuggingInterfaceFromVersion (
3535
## Parameters
3636

3737
`iDebuggerVersion`\
38-
[in] The version of `ICorDebug` that is expected by the debugger. See the [CorDebugInterfaceVersion](../../../framework/debuggingcordebuginterfaceversion-enumeration.md) enumeration for valid values.
38+
[in] The version of `ICorDebug` that is expected by the debugger. See the [CorDebugInterfaceVersion](../../../framework/debugging/cordebuginterfaceversion-enumeration.md) enumeration for valid values.
3939

4040
`szDebuggeeVersion`\
4141
[in] The common language runtime version associated with the application or process to be debugged. See the [GetVersionFromProcess](getversionfromprocess-function.md) or [GetRequestedRuntimeVersion](getrequestedruntimeversion-function.md) method for information on retrieving this value.

docs/core/unmanaged-api/hosting/deprecated-clr-hosting-functions.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,12 @@
22
description: "Learn more about: Deprecated CLR Hosting Functions"
33
title: "Deprecated CLR Hosting Functions"
44
ms.date: "03/30/2017"
5-
helpviewer_keywords:
6-
- ".NET Framework 1.1, hosting global static functions"
7-
- "global static functions [.NET Framework hosting], version 2.0"
8-
- ".NET Framework 2.0, hosting global static functions"
9-
- "hosting global static functions [.NET Framework], version 2.0"
105
---
116
# Deprecated CLR Hosting Functions
127

138
This section describes the unmanaged global static functions that earlier versions of the hosting API used.
149

15-
With the exception of the infrastructure functions (`_Cor*` functions), which are used only by the .NET Framework, these functions have been deprecated in the .NET Framework 4.
10+
With the exception of the infrastructure functions (`_Cor*` functions), which are used only by .NET Framework, these functions are deprecated starting in .NET Framework 4.
1611

1712
## Activation functions
1813

@@ -98,7 +93,7 @@ This section describes the unmanaged global static functions that earlier versio
9893
Obsolete.
9994

10095
[CreateDebuggingInterfaceFromVersion Function](createdebugginginterfacefromversion-function.md)
101-
Deprecated. Creates an [ICorDebug](../../../framework/debuggingicordebug-interface.md) object based on the specified version information.
96+
Deprecated. Creates an [ICorDebug](../../../framework/debugging/icordebug-interface.md) object based on the specified version information.
10297

10398
[CreateICeeFileGen Function](createiceefilegen-function.md)
10499
Deprecated. Creates an [ICeeFileGen](iceefilegen-class.md) object.

docs/core/unmanaged-api/hosting/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ helpviewer_keywords:
1111

1212
The hosting API enables unmanaged hosts to integrate the common language runtime (CLR) into their applications.
1313

14+
These APIs that can be used with both .NET Framework and .NET.
15+
1416
## In This Section
1517

1618
[Hosting Coclasses](hosting-coclasses.md)\

docs/core/unmanaged-api/metadata/imetadataassemblyimport-findassembliesbyname-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ HRESULT FindAssembliesByName (
6262

6363
## Remarks
6464

65-
Given an assembly name, the `FindAssembliesByName` method finds the assembly by following the standard rules for resolving assembly references. (For more information, see [How the Runtime Locates Assemblies](../../deployment/how-the-runtime-locates-assemblies.md).) `FindAssembliesByName` allows the caller to configure various aspects of the assembly resolver context, such as application base and private search path.
65+
Given an assembly name, the `FindAssembliesByName` method finds the assembly by following the standard rules for resolving assembly references. (For more information, see [How the Runtime Locates Assemblies](../../../framework/deployment/how-the-runtime-locates-assemblies.md).) `FindAssembliesByName` allows the caller to configure various aspects of the assembly resolver context, such as application base and private search path.
6666

6767
The `FindAssembliesByName` method requires the CLR to be initialized in the process in order to invoke the assembly resolution logic. Therefore, you must call [CoInitializeEE](../hosting/coinitializeee-function.md) (passing COINITEE_DEFAULT) before calling `FindAssembliesByName`, and then follow with a call to [CoUninitializeCor](../hosting/couninitializecor-function.md).
6868

@@ -82,5 +82,5 @@ HRESULT FindAssembliesByName (
8282

8383
## See also
8484

85-
- [How the Runtime Locates Assemblies](../../deployment/how-the-runtime-locates-assemblies.md)
85+
- [How the Runtime Locates Assemblies](../../../framework/deployment/how-the-runtime-locates-assemblies.md)
8686
- [IMetaDataAssemblyImport Interface](imetadataassemblyimport-interface.md)

docs/core/unmanaged-api/metadata/imetadataassemblyimport-findexportedtypebyname-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ HRESULT FindExportedTypeByName (
5858
## See also
5959

6060
- [IMetaDataAssemblyImport Interface](imetadataassemblyimport-interface.md)
61-
- [How the Runtime Locates Assemblies](../../deployment/how-the-runtime-locates-assemblies.md)
61+
- [How the Runtime Locates Assemblies](../../../framework/deployment/how-the-runtime-locates-assemblies.md)

docs/core/unmanaged-api/metadata/imetadataassemblyimport-findmanifestresourcebyname-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ HRESULT FindManifestResourceByName (
5454
## See also
5555

5656
- [IMetaDataAssemblyImport Interface](imetadataassemblyimport-interface.md)
57-
- [How the Runtime Locates Assemblies](../../deployment/how-the-runtime-locates-assemblies.md)
57+
- [How the Runtime Locates Assemblies](../../../framework/deployment/how-the-runtime-locates-assemblies.md)

docs/core/unmanaged-api/metadata/index.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ helpviewer_keywords:
1111

1212
The metadata API enables a client, such as a compiler, to generate or access a component's metadata without the types being loaded by the common language runtime (CLR).
1313

14-
These articles describe APIs that can be used with both .NET Framework and .NET. For .NET Framework-specific unmanaged APIs, see [.NET Framework metadata](../../../framework/unmanaged-api/metadata/index.md).
14+
These APIs that can be used with both .NET Framework and .NET.
1515

16-
## In This Section
16+
## In this section
1717

18-
[Metadata Interfaces](metadata-interfaces.md)
19-
Describes the unmanaged interfaces that provide access to the metadata exposed by the .NET types, methods, fields, and so on.
18+
[Metadata Interfaces](metadata-interfaces.md)\
19+
Describes the unmanaged interfaces that provide access to the metadata exposed by the .NET types, methods, fields, and so on.
2020

21-
[Metadata Global Static Functions](metadata-global-static-functions.md)
22-
Describes the unmanaged global static functions that the metadata API uses.
21+
[Metadata Global Static Functions](metadata-global-static-functions.md)\
22+
Describes the unmanaged global static functions that the metadata API uses.
2323

24-
[Metadata Enumerations](metadata-enumerations.md)
25-
Describes the unmanaged enumerations that the metadata API uses.
24+
[Metadata Enumerations](metadata-enumerations.md)\
25+
Describes the unmanaged enumerations that the metadata API uses.
2626

27-
[Metadata Structures](metadata-structures.md)
28-
Describes the unmanaged structures that the metadata API uses.
27+
[Metadata Structures](metadata-structures.md)\
28+
Describes the unmanaged structures that the metadata API uses.
2929

30-
[Metadata Unions](metadata-unions.md)
31-
Describes the unmanaged unions that the metadata API uses.
30+
[Metadata Unions](metadata-unions.md)\
31+
Describes the unmanaged unions that the metadata API uses.

docs/framework/unmanaged-api/alink/addfile-method.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ HRESULT AddFile(
3535

3636
## Parameters
3737

38-
`AssemblyID`
38+
`AssemblyID`\
3939
Unique ID of the assembly to be augmented.
4040

41-
`pszFilename`
41+
`pszFilename`\
4242
Fully qualified name of file to be added.
4343

44-
`dwFlags`
45-
COM+ FileDef flags such as `ffContainsNoMetaData` and `ffWriteable`. `dwFlags` is passed to [DefineFile Method](../../../core/unmanaged-apis/metadata/imetadataassemblyemit-definefile-method.md).
44+
`dwFlags`\
45+
COM+ FileDef flags such as `ffContainsNoMetaData` and `ffWriteable`. `dwFlags` is passed to [DefineFile Method](../../../core/unmanaged-api/metadata/imetadataassemblyemit-definefile-method.md).
4646

47-
`pEmitter`
48-
[IMetaDataEmit Interface](../../../core/unmanaged-apis/metadata/imetadataemit-interface.md) interface to be used to emit metadata, if necessary.
47+
`pEmitter`\
48+
[IMetaDataEmit Interface](../../../core/unmanaged-api/metadata/imetadataemit-interface.md) interface to be used to emit metadata, if necessary.
4949

50-
`pFileToken`
50+
`pFileToken`\
5151
Pointer to where the unique ID of the added file will be stored.
5252

5353
## Return Value

docs/framework/unmanaged-api/alink/addfile2-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ HRESULT AddFile2(
4242
Name of the file to be added.
4343

4444
`dwFlags`
45-
COM+ `FileDef` flags such as `ffContainsNoMetaData` and `ffWriteable`. `dwFlags` is passed to [DefineFile Method](../../../core/unmanaged-apis/metadata/imetadataassemblyemit-definefile-method.md).
45+
COM+ `FileDef` flags such as `ffContainsNoMetaData` and `ffWriteable`. `dwFlags` is passed to [DefineFile Method](../../../core/unmanaged-api/metadata/imetadataassemblyemit-definefile-method.md).
4646

4747
`pEmitter`
48-
Interface to [IMetaDataEmit2 Interface](../../../core/unmanaged-apis/metadata/imetadataemit2-interface.md) interface.
48+
Interface to [IMetaDataEmit2 Interface](../../../core/unmanaged-api/metadata/imetadataemit2-interface.md) interface.
4949

5050
`pFileToken`
5151
Receives ID for the file being added.

docs/framework/unmanaged-api/alink/addimport-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ HRESULT AddImport(
4141
Unique ID, retrieved from [ImportFile Method](importfile-method.md), of file to be imported.
4242

4343
`dwFlags`
44-
COM+ FileDef flags such as `ffContainsNoMetaData` and `ffWriteable`. `dwFlags` is passed to [DefineFile Method](../../../core/unmanaged-apis/metadata/imetadataassemblyemit-definefile-method.md).
44+
COM+ FileDef flags such as `ffContainsNoMetaData` and `ffWriteable`. `dwFlags` is passed to [DefineFile Method](../../../core/unmanaged-api/metadata/imetadataassemblyemit-definefile-method.md).
4545

4646
`pFileToken`
4747
Pointer to token that receives the ID for the resulting file.

docs/framework/unmanaged-api/alink/embedresource-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ HRESULT EmbedResource(
4848
Offset of resource from RVA.
4949

5050
`dwFlags`
51-
Accessibility flags such as `mrPublic` and `mrPrivate`. These flags may be passed to [DefineExportedType Method](../../../core/unmanaged-apis/metadata/imetadataassemblyemit-defineexportedtype-method.md).
51+
Accessibility flags such as `mrPublic` and `mrPrivate`. These flags may be passed to [DefineExportedType Method](../../../core/unmanaged-api/metadata/imetadataassemblyemit-defineexportedtype-method.md).
5252

5353
## Return Value
5454

docs/framework/unmanaged-api/alink/exportnestedtype-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ HRESULT ExportNestedType(
5353
Fully qualified type name to export.
5454

5555
`dwFlags`
56-
`ComType` flags such as `tdPublic` or `tdNested`. This value may be passed to [DefineExportedType Method](../../../core/unmanaged-apis/metadata/imetadataassemblyemit-defineexportedtype-method.md).
56+
`ComType` flags such as `tdPublic` or `tdNested`. This value may be passed to [DefineExportedType Method](../../../core/unmanaged-api/metadata/imetadataassemblyemit-defineexportedtype-method.md).
5757

5858
`pType`
5959
Receives token for exported type.

docs/framework/unmanaged-api/alink/exporttype-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ HRESULT ExportType(
4848
Fully qualified type name to be made exportable.
4949

5050
`dwFlags`
51-
`ComType` flags such as `tdPublic` or `tdNested`. This parameter may be passed to [DefineExportedType Method](../../../core/unmanaged-apis/metadata/imetadataassemblyemit-defineexportedtype-method.md).
51+
`ComType` flags such as `tdPublic` or `tdNested`. This parameter may be passed to [DefineExportedType Method](../../../core/unmanaged-api/metadata/imetadataassemblyemit-defineexportedtype-method.md).
5252

5353
`pType`
5454
Receives token for exported type.

docs/framework/unmanaged-api/alink/exporttypeforwarder-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ HRESULT ExportTypeForwarder(
4040
Fully qualified type name to export.
4141

4242
`dwFlags`
43-
`ComType` flags such as `tdPublic` or `tdNested`. This value may be passed to [DefineExportedType Method](../../../core/unmanaged-apis/metadata/imetadataassemblyemit-defineexportedtype-method.md).
43+
`ComType` flags such as `tdPublic` or `tdNested`. This value may be passed to [DefineExportedType Method](../../../core/unmanaged-api/metadata/imetadataassemblyemit-defineexportedtype-method.md).
4444

4545
`pType`
4646
Receives the token of the exported type. This is necessary only for emitting nested types.

docs/framework/unmanaged-api/alink/getscope-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ HRESULT GetScope(
4343
Zero-based scope to import.
4444

4545
`ppImportScope`
46-
Receives [IMetaDataImport Interface](../../../core/unmanaged-apis/metadata/imetadataimport-interface.md) interface for the scope.
46+
Receives [IMetaDataImport Interface](../../../core/unmanaged-api/metadata/imetadataimport-interface.md) interface for the scope.
4747

4848
## Return Value
4949

docs/framework/unmanaged-api/alink/getscope2-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ HRESULT GetScope2(
4343
Zero-based scope to import.
4444

4545
`ppImportScope`
46-
Receives pointer to [IMetaDataImport2 Interface](../../../core/unmanaged-apis/metadata/imetadataimport2-interface.md) interface for indicated scope.
46+
Receives pointer to [IMetaDataImport2 Interface](../../../core/unmanaged-api/metadata/imetadataimport2-interface.md) interface for indicated scope.
4747

4848
## Return Value
4949

docs/framework/unmanaged-api/alink/ialink2-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.assetid: fba62a55-36bd-401e-bcd2-5be8e2d34891
1010
---
1111
# IALink2 Interface
1212

13-
Complements the [IALink Interface](ialink-interface.md) by declaring methods that operate on newer metadata interfaces such as [IMetaDataEmit2 Interface](../../../core/unmanaged-apis/metadata/imetadataemit2-interface.md). Additionally, IALink2 declares methods that provide additional usage flexibility over the original IALink interfaces.
13+
Complements the [IALink Interface](ialink-interface.md) by declaring methods that operate on newer metadata interfaces such as [IMetaDataEmit2 Interface](../../../core/unmanaged-api/metadata/imetadataemit2-interface.md). Additionally, IALink2 declares methods that provide additional usage flexibility over the original IALink interfaces.
1414

1515
## In This Section
1616

docs/framework/unmanaged-api/alink/importfile-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ HRESULT ImportFile(
4848
Pointer to token where a unique file ID will be stored. The file can be an assembly or a file.
4949

5050
`ppAssemblyScope`
51-
Receives pointer to [IMetaDataAssemblyImport Interface](../../../core/unmanaged-apis/metadata/imetadataassemblyimport-interface.md). Can be NULL if the file is not an assembly.
51+
Receives pointer to [IMetaDataAssemblyImport Interface](../../../core/unmanaged-api/metadata/imetadataassemblyimport-interface.md). Can be NULL if the file is not an assembly.
5252

5353
`pdwCountOfScopes`
5454
Pointer to the count of files and/or scopes that have been imported.

docs/framework/unmanaged-api/alink/importfile2-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ HRESULT ImportFile2(
4343
Optional output file name that can be used to rename the file as it is linked into the assembly.
4444

4545
`pAssemblyScopeIn`
46-
Optional scope [IMetaDataAssemblyImport Interface](../../../core/unmanaged-apis/metadata/imetadataassemblyimport-interface.md) interface.
46+
Optional scope [IMetaDataAssemblyImport Interface](../../../core/unmanaged-api/metadata/imetadataassemblyimport-interface.md) interface.
4747

4848
`fSmartImport`
4949
If TRUE, ImportTypes is used, otherwise importing must be performed manually.
@@ -52,7 +52,7 @@ HRESULT ImportFile2(
5252
Receives the ID for the file or assembly.
5353

5454
`ppAssemblyScope`
55-
Receives the [IMetaDataAssemblyImport Interface](../../../core/unmanaged-apis/metadata/imetadataassemblyimport-interface.md) interface. NULL if the file is not an assembly.
55+
Receives the [IMetaDataAssemblyImport Interface](../../../core/unmanaged-api/metadata/imetadataassemblyimport-interface.md) interface. NULL if the file is not an assembly.
5656

5757
`pdwCountOfScopes`
5858
Receives the found of files and/or scopes imported.

docs/framework/unmanaged-api/alink/importfileex-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ HRESULT ImportFileEx(
4646
If TRUE, ImportTypes is used, otherwise importing must be performed manually.
4747

4848
`dwOpenFlags`
49-
Flags to be passed along to [OpenScope Method](../../../core/unmanaged-apis/metadata/imetadatadispenser-openscope-method.md).
49+
Flags to be passed along to [OpenScope Method](../../../core/unmanaged-api/metadata/imetadatadispenser-openscope-method.md).
5050

5151
`pImportToken`
5252
Receives ID of the file being imported.
5353

5454
`ppAssemblyScope`
55-
Receives assembly import scope [IMetaDataAssemblyImport Interface](../../../core/unmanaged-apis/metadata/imetadataassemblyimport-interface.md) interface. Is set to NULL if file is not an assembly.
55+
Receives assembly import scope [IMetaDataAssemblyImport Interface](../../../core/unmanaged-api/metadata/imetadataassemblyimport-interface.md) interface. Is set to NULL if file is not an assembly.
5656

5757
`pdwCountOfScopes`
5858
Receives count of imported files and/or scopes.

docs/framework/unmanaged-api/alink/importfileex2-method.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ HRESULT ImportFileEx2(
4444
Optional name of target file.
4545

4646
`pAssemblyScopeIn`
47-
Optional import scope [IMetaDataAssemblyImport Interface](../../../core/unmanaged-apis/metadata/imetadataassemblyimport-interface.md) interface.
47+
Optional import scope [IMetaDataAssemblyImport Interface](../../../core/unmanaged-api/metadata/imetadataassemblyimport-interface.md) interface.
4848

4949
`fSmartImport`
5050
If TRUE, ImportTypes is used, otherwise importing must be performed manually.
5151

5252
`dwOpenFlags`
53-
Flags to be passed along to [OpenScope Method](../../../core/unmanaged-apis/metadata/imetadatadispenser-openscope-method.md).
53+
Flags to be passed along to [OpenScope Method](../../../core/unmanaged-api/metadata/imetadatadispenser-openscope-method.md).
5454

5555
`pImportToken`
5656
Receives unique ID for the assembly or file.
5757

5858
`ppAssemblyScope`
59-
Receives assembly import scope [IMetaDataAssemblyImport Interface](../../../core/unmanaged-apis/metadata/imetadataassemblyimport-interface.md) interface. Can be NULL if the file is not an assembly.
59+
Receives assembly import scope [IMetaDataAssemblyImport Interface](../../../core/unmanaged-api/metadata/imetadataassemblyimport-interface.md) interface. Can be NULL if the file is not an assembly.
6060

6161
`pdwCountOfScopes`
6262
Receives the number of files and/or scopes imported.

docs/framework/unmanaged-api/alink/importtypes-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ HRESULT ImportTypes(
4848
Receives enumerator handle for the types in this scope.
4949

5050
`ppImportScope`
51-
Optionally receives [IMetaDataImport Interface](../../../core/unmanaged-apis/metadata/imetadataimport-interface.md) interface.
51+
Optionally receives [IMetaDataImport Interface](../../../core/unmanaged-api/metadata/imetadataimport-interface.md) interface.
5252

5353
`pdwCountOfTypes`
5454
Optionally receives count of types in the indicated scope.

docs/framework/unmanaged-api/alink/importtypes2-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ HRESULT ImportTypes2(
4848
Receives enumerator handle for the types in the given scope.
4949

5050
`ppImportScope`
51-
Optionally receives [IMetaDataImport2 Interface](../../../core/unmanaged-apis/metadata/imetadataimport2-interface.md) interface.
51+
Optionally receives [IMetaDataImport2 Interface](../../../core/unmanaged-api/metadata/imetadataimport2-interface.md) interface.
5252

5353
`pdwCountOfTypes`
5454
Optionally receives count of types in the specified scope.

docs/framework/unmanaged-api/alink/init-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ HRESULT Init(
3232
## Parameters
3333

3434
`pDispenser`
35-
[IMetaDataDispenserEx Interface](../../../core/unmanaged-apis/metadata/imetadatadispenserex-interface.md) pointer to the metadata dispenser.
35+
[IMetaDataDispenserEx Interface](../../../core/unmanaged-api/metadata/imetadatadispenserex-interface.md) pointer to the metadata dispenser.
3636

3737
`pErrorHandler`
38-
[IMetaDataError Interface](../../../core/unmanaged-apis/metadata/imetadataerror-interface.md) pointer to an optional error handling interface.
38+
[IMetaDataError Interface](../../../core/unmanaged-api/metadata/imetadataerror-interface.md) pointer to an optional error handling interface.
3939

4040
## Return Value
4141

docs/framework/unmanaged-api/alink/linkresource-method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ HRESULT LinkResource(
4747
Name of the resource.
4848

4949
`dwFlags`
50-
Accessibility flags such as `mrPublic` and `mrPrivate`. This parameter may be passed to [DefineManifestResource Method](../../../core/unmanaged-apis/metadata/imetadataassemblyemit-definemanifestresource-method.md).
50+
Accessibility flags such as `mrPublic` and `mrPrivate`. This parameter may be passed to [DefineManifestResource Method](../../../core/unmanaged-api/metadata/imetadataassemblyemit-definemanifestresource-method.md).
5151

5252
## Return Value
5353

0 commit comments

Comments
 (0)