Changeset 223 for branches/samba-3.3.x/source/include/nt_status.h
- Timestamp:
- May 24, 2009, 7:51:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/include/nt_status.h
r206 r223 84 84 } while (0) 85 85 86 #define W_ERROR_NOT_OK_GOTO_DONE(x) do { \ 87 if (!W_ERROR_IS_OK(x)) {\ 88 goto done;\ 89 }\ 90 } while (0) 91 92 #define W_ERROR_NOT_OK_GOTO(x, y) do {\ 93 if (!W_ERROR_IS_OK(x)) {\ 94 goto y;\ 95 }\ 96 } while(0) 97 86 98 /* The top byte in an NTSTATUS code is used as a type field. 87 99 * Windows only uses value 0xC0 as an indicator for an NT error
Note:
See TracChangeset
for help on using the changeset viewer.