Skip to content

Commit f347e16

Browse files
authored
Fix indent
1 parent 5a25b50 commit f347e16

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/extensibility/debugger/reference/ad-process-id.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ Specifies the process ID, which may be either a system ID or a GUID.
2020

2121
```cpp
2222
typedef struct _AD_PROCESS_ID {
23-
AD_PROCESS_ID_TYPE ProcessIdType;
24-
union {
25-
DWORD dwProcessId; 
26-
GUID guidProcessId; 
27-
DWORD dwUnused; 
28-
} ProcessId;
23+
AD_PROCESS_ID_TYPE ProcessIdType;
24+
union {
25+
DWORD dwProcessId; 
26+
GUID guidProcessId; 
27+
DWORD dwUnused; 
28+
} ProcessId;
2929
} AD_PROCESS_ID;
3030
```
3131
3232
```csharp
3333
public struct AD_PROCESS_ID {
34-
AD_PROCESS_ID_TYPE ProcessIdType;
35-
DWORD dwProcessId; 
36-
GUID guidProcessId; 
37-
DWORD dwUnused; 
34+
AD_PROCESS_ID_TYPE ProcessIdType;
35+
DWORD dwProcessId; 
36+
GUID guidProcessId; 
37+
DWORD dwUnused; 
3838
};
3939
```
4040

0 commit comments

Comments
 (0)