Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 709 Bytes

ii.6.5-referencing-modules.md

File metadata and controls

16 lines (11 loc) · 709 Bytes

II.6.5 Referencing modules

When an item is in the current assembly, but is part of a module other than the one containing the manifest, the defining module shall be declared in the manifest of the assembly using the .module extern directive. The name used in the .module extern directive of the referencing assembly shall exactly match the name used in the .module directive (§II.6.4) of the defining module. See §II.22.31.

Decl ::= Clause
| .module extern Filename
| … §II.5.10

[Example:

.module extern Counter.dll

end example]