Skip to content

Commit

Permalink
Combine send/recv flags into new SEND_RECV_FLAGS enumeration (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
riverar authored Apr 17, 2022
1 parent 673cfe1 commit f3f87a5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
26 changes: 23 additions & 3 deletions generation/WinSDK/enums.json
Original file line number Diff line number Diff line change
Expand Up @@ -15871,19 +15871,39 @@
]
},
{
"name": "SEND_FLAGS",
"name": "SEND_RECV_FLAGS",
"type": "int",
"flags": true,
"members": [
{
"name": "MSG_DONTROUTE"
"name": "MSG_OOB",
"value": 1
},
{
"name": "MSG_PEEK",
"value": 2
},
{
"name": "MSG_OOB"
"name": "MSG_DONTROUTE",
"value": 4
},
{
"name": "MSG_WAITALL",
"value": 8
},
{
"name": "MSG_PUSH_IMMEDIATE",
"value": 32
}
],
"uses": [
{
"method": "send",
"parameter": "flags"
},
{
"method": "recv",
"parameter": "flags"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion scripts/BaselineWinmd/Windows.Win32.winmd
Git LFS file not shown

0 comments on commit f3f87a5

Please sign in to comment.