You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/atl/reference/atl-dialog-wizard.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ The wizard inserts into the header file a [message map](../../atl/message-maps-a
23
23
**Short name**
24
24
Sets the abbreviated name for the ATL dialog object. The name you provide determines the class name and the file (.cpp and .h) names, unless you change those fields individually.
25
25
26
-
`Class`
26
+
**Class**
27
27
Sets the name of the class to be created. This name is based on the name you provide in **Short name**, preceded by 'C', the typical prefix for a class name.
@@ -73,7 +73,7 @@ Returns TRUE if the objects are not equal, FALSE if they are equal.
73
73
Tests if the `CSid` object or `SID` structure on the left side of the operator is less than the `CSid` object or `SID` structure on the right side (for C++ Standard Library compatibility).
@@ -97,7 +97,7 @@ This operator acts on the address of the `CSid` object or `SID` structure, and i
97
97
Tests if the `CSid` object or `SID` structure on the left side of the operator is greater than the `CSid` object or `SID` structure on the right side (for C++ Standard Library compatibility).
@@ -121,7 +121,7 @@ This operator acts on the address of the `CSid` object or `SID` structure, and i
121
121
Tests if the `CSid` object or `SID` structure on the left side of the operator is less than or equal to the `CSid` object or `SID` structure on the right side (for C++ Standard Library compatibility).
@@ -145,7 +145,7 @@ This operator acts on the address of the `CSid` object or `SID` structure, and i
145
145
Tests if the `CSid` object or `SID` structure on the left side of the operator is greater than or equal to the `CSid` object or `SID` structure on the right side (for C++ Standard Library compatibility).
Copy file name to clipboardExpand all lines: docs/build/reference/ai-specify-metadata-directories.md
+32-31Lines changed: 32 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,34 +13,35 @@ ms.author: "corob"
13
13
ms.workload: ["cplusplus"]
14
14
---
15
15
# /AI (Specify Metadata Directories)
16
-
Specifies a directory that the compiler will search to resolve file references passed to the `#using` directive.
17
-
18
-
## Syntax
19
-
20
-
```
21
-
/AIdirectory
22
-
```
23
-
24
-
## Arguments
25
-
`directory`
26
-
The directory or path for the compiler to search.
27
-
28
-
## Remarks
29
-
Only one directory can be passed to an **/AI** invocation. Specify one **/AI** option for each path you want the compiler to search. For example, to add both C:\Project\Meta and C:\Common\Meta to the compiler search path for `#using` directives, add `/AI"C:\Project\Meta" /AI"C:\Common\Meta"` to the compiler command line or add each directory to the **Additional #using Directories** property in Visual Studio.
30
-
31
-
### To set this compiler option in the Visual Studio development environment
32
-
33
-
1. Open the project's **Property Pages** dialog box. For details, see [Working with Project Properties](../../ide/working-with-project-properties.md).
34
-
35
-
2. In the navigation pane, select **Configuration Properties**, **C/C++**, **General**.
36
-
37
-
3. Modify the **Additional #using Directories** property.
38
-
39
-
### To set this compiler option programmatically
40
-
41
-
- See <xref:Microsoft.VisualStudio.VCProjectEngine.VCCLCompilerTool.AdditionalUsingDirectories%2A>.
Specifies a directory that the compiler will search to resolve file references passed to the `#using` directive.
18
+
19
+
## Syntax
20
+
21
+
> **/AI**_directory_
22
+
23
+
## Arguments
24
+
25
+
*directory*<br/>
26
+
The directory or path for the compiler to search.
27
+
28
+
## Remarks
29
+
Only one directory can be passed to an **/AI** invocation. Specify one **/AI** option for each path you want the compiler to search. For example, to add both C:\Project\Meta and C:\Common\Meta to the compiler search path for `#using` directives, add `/AI"C:\Project\Meta" /AI"C:\Common\Meta"` to the compiler command line or add each directory to the **Additional #using Directories** property in Visual Studio.
30
+
31
+
### To set this compiler option in the Visual Studio development environment
32
+
33
+
1. Open the project's **Property Pages** dialog box. For details, see [Working with Project Properties](../../ide/working-with-project-properties.md).
0 commit comments