Skip to content

Commit a194969

Browse files
authored
Fix highlighting
1 parent 81befdd commit a194969

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ end
4444

4545
Finally, here are the corresponding Windows API function syntax definitions in `C`:
4646

47-
```
47+
```c
4848
HANDLE WINAPI GetStdHandle(
4949
_In_ DWORD nStdHandle
5050
);
5151
```
5252

53-
```
53+
```c
5454
BOOL WINAPI GetConsoleMode(
5555
_In_ HANDLE hConsoleHandle,
5656
_Out_ LPDWORD lpMode
@@ -66,7 +66,7 @@ directly translatable without manually looking up the myriad Windows data types.
6666
The aliases defined in this package are provided below. Refer to
6767
[https://docs.microsoft.com/en-us/windows/win32/winprog/windows-data-types](https://docs.microsoft.com/en-us/windows/win32/winprog/windows-data-types)
6868
for detailed documentation on each constant.
69-
```
69+
```julia
7070
FALSE = Cint(0)
7171
TRUE = Cint(1)
7272

0 commit comments

Comments
 (0)