Skip to content

Commit 4d360b9

Browse files
authored
Merge pull request #2545 from changeworld/patch-61
Delete unnecessary spaces
2 parents 3f215b4 + 10cf373 commit 4d360b9

File tree

1 file changed

+90
-90
lines changed

1 file changed

+90
-90
lines changed

docs/debugger/debug-interface-access/cv-cfl-lang.md

Lines changed: 90 additions & 90 deletions
Original file line numberDiff line numberDiff line change
@@ -2,102 +2,102 @@
22
title: "CV_CFL_LANG | Microsoft Docs"
33
ms.date: "11/04/2016"
44
ms.topic: "conceptual"
5-
dev_langs:
5+
dev_langs:
66
- "C++"
7-
helpviewer_keywords:
7+
helpviewer_keywords:
88
- "CV_CFL_LANG enumeration"
99
ms.assetid: 4e8e0613-ad02-4de9-9f46-e4753c5b0251
1010
author: "mikejo5000"
1111
ms.author: "mikejo"
1212
manager: jillfra
13-
ms.workload:
13+
ms.workload:
1414
- "multiple"
1515
---
1616
# CV_CFL_LANG
17-
Specifies the source code language of the application or linked module.
18-
19-
## Syntax
20-
21-
```C++
22-
typedef enum CV_CFL_LANG { 
23-
CV_CFL_C = 0x00,
24-
CV_CFL_CXX = 0x01,
25-
CV_CFL_FORTRAN = 0x02,
26-
CV_CFL_MASM = 0x03,
27-
CV_CFL_PASCAL = 0x04,
28-
CV_CFL_BASIC = 0x05,
29-
CV_CFL_COBOL = 0x06,
30-
CV_CFL_LINK = 0x07,
31-
CV_CFL_CVTRES = 0x08,
32-
CV_CFL_CVTPGD = 0x09,
33-
CV_CFL_CSHARP = 0x0A,
34-
CV_CFL_VB = 0x0B,
35-
CV_CFL_ILASM = 0x0C,
36-
CV_CFL_JAVA = 0x0D,
37-
CV_CFL_JSCRIPT = 0x0E,
38-
CV_CFL_MSIL = 0x0F,
39-
CV_CFL_HLSL = 0x10
40-
} CV_CFL_LANG;
41-
```
42-
43-
## Elements
44-
CV_CFL_C
45-
Application language is C.
46-
47-
CV_CFL_CXX
48-
Application language is C++.
49-
50-
CV_CFL_FORTRAN
51-
Application language is FORTRAN.
52-
53-
CV_CFL_MASM
54-
Application language is Microsoft Macro Assembler.
55-
56-
CV_CFL_PASCAL
57-
Application language is Pascal.
58-
59-
CV_CFL_BASIC
60-
Application language is BASIC.
61-
62-
CV_CFL_COBOL
63-
Application language is COBOL.
64-
65-
CV_CFL_LINK
66-
Application is a linker-generated module.
67-
68-
CV_CFL_CVTRES
69-
Application is a resource module converted with CVTRES tool.
70-
71-
CV_CFL_CVTPGD
72-
Application is a POGO optimized module generated with CVTPGD tool.
73-
74-
CV_CFL_CSHARP
75-
Application language is C#.
76-
77-
CV_CFL_VB
78-
Application language is Visual Basic.
79-
80-
CV_CFL_ILASM
81-
Application language is intermediate language assembly (that is, Common Language Runtime (CLR) assembly).
82-
83-
CV_CFL_JAVA
84-
Application language is Java.
85-
86-
CV_CFL_JSCRIPT
87-
Application language is Jscript.
88-
89-
CV_CFL_MSIL
90-
Application language is an unknown Microsoft Intermediate Language (MSIL), possibly a result of using the [/LTCG (Link-time Code Generation)](/cpp/build/reference/ltcg-link-time-code-generation) switch.
91-
92-
CV_CFL_HLSL
93-
Application language is High Level Shader Language.
94-
95-
## Remarks
96-
The values in this enumeration are returned by a call to the [IDiaSymbol::get_language](../../debugger/debug-interface-access/idiasymbol-get-language.md) method.
97-
98-
## Requirements
99-
Header: cvconst.h
100-
101-
## See Also
102-
[Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md)
103-
[IDiaSymbol::get_language](../../debugger/debug-interface-access/idiasymbol-get-language.md)
17+
Specifies the source code language of the application or linked module.
18+
19+
## Syntax
20+
21+
```C++
22+
typedef enum CV_CFL_LANG {
23+
CV_CFL_C = 0x00,
24+
CV_CFL_CXX = 0x01,
25+
CV_CFL_FORTRAN = 0x02,
26+
CV_CFL_MASM = 0x03,
27+
CV_CFL_PASCAL = 0x04,
28+
CV_CFL_BASIC = 0x05,
29+
CV_CFL_COBOL = 0x06,
30+
CV_CFL_LINK = 0x07,
31+
CV_CFL_CVTRES = 0x08,
32+
CV_CFL_CVTPGD = 0x09,
33+
CV_CFL_CSHARP = 0x0A,
34+
CV_CFL_VB = 0x0B,
35+
CV_CFL_ILASM = 0x0C,
36+
CV_CFL_JAVA = 0x0D,
37+
CV_CFL_JSCRIPT = 0x0E,
38+
CV_CFL_MSIL = 0x0F,
39+
CV_CFL_HLSL = 0x10
40+
} CV_CFL_LANG;
41+
```
42+
43+
## Elements
44+
CV_CFL_C
45+
Application language is C.
46+
47+
CV_CFL_CXX
48+
Application language is C++.
49+
50+
CV_CFL_FORTRAN
51+
Application language is FORTRAN.
52+
53+
CV_CFL_MASM
54+
Application language is Microsoft Macro Assembler.
55+
56+
CV_CFL_PASCAL
57+
Application language is Pascal.
58+
59+
CV_CFL_BASIC
60+
Application language is BASIC.
61+
62+
CV_CFL_COBOL
63+
Application language is COBOL.
64+
65+
CV_CFL_LINK
66+
Application is a linker-generated module.
67+
68+
CV_CFL_CVTRES
69+
Application is a resource module converted with CVTRES tool.
70+
71+
CV_CFL_CVTPGD
72+
Application is a POGO optimized module generated with CVTPGD tool.
73+
74+
CV_CFL_CSHARP
75+
Application language is C#.
76+
77+
CV_CFL_VB
78+
Application language is Visual Basic.
79+
80+
CV_CFL_ILASM
81+
Application language is intermediate language assembly (that is, Common Language Runtime (CLR) assembly).
82+
83+
CV_CFL_JAVA
84+
Application language is Java.
85+
86+
CV_CFL_JSCRIPT
87+
Application language is Jscript.
88+
89+
CV_CFL_MSIL
90+
Application language is an unknown Microsoft Intermediate Language (MSIL), possibly a result of using the [/LTCG (Link-time Code Generation)](/cpp/build/reference/ltcg-link-time-code-generation) switch.
91+
92+
CV_CFL_HLSL
93+
Application language is High Level Shader Language.
94+
95+
## Remarks
96+
The values in this enumeration are returned by a call to the [IDiaSymbol::get_language](../../debugger/debug-interface-access/idiasymbol-get-language.md) method.
97+
98+
## Requirements
99+
Header: cvconst.h
100+
101+
## See Also
102+
[Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md)
103+
[IDiaSymbol::get_language](../../debugger/debug-interface-access/idiasymbol-get-language.md)

0 commit comments

Comments
 (0)