File tree Expand file tree Collapse file tree 2 files changed +13
-18
lines changed
Expand file tree Collapse file tree 2 files changed +13
-18
lines changed Original file line number Diff line number Diff line change @@ -609,17 +609,14 @@ int GetRgnBox(LPRECT lpRect) const;
609609* lpRect* <br />
610610Points to a ` RECT ` structure or ` CRect ` object to receive the coordinates of the bounding rectangle. The ` RECT ` structure has the following form:
611611
612- ` typedef struct tagRECT { `
613-
614- ` int left; `
615-
616- ` int top; `
617-
618- ` int right; `
619-
620- ` int bottom; `
621-
622- ` } RECT; `
612+ ``` cpp
613+ typedef struct tagRECT {
614+ int left;
615+ int top;
616+ int right;
617+ int bottom;
618+ } RECT;
619+ ```
623620
624621### Return Value
625622
Original file line number Diff line number Diff line change @@ -67,13 +67,11 @@ int main()
6767}
6868```
6969
70- ** Output:**
71-
72- ` c1 != c2: true `
73-
74- ` c1 != c3: false `
75-
76- ` c2 != c3: true `
70+ ``` Output
71+ c1 != c2: true
72+ c1 != c3: false
73+ c2 != c3: true
74+ ```
7775
7876## <a name =" op_eq_eq " ></a > operator==
7977
You can’t perform that action at this time.
0 commit comments