Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing backslashes to REG_OPEN_LEGAL_OPTION #2187

Merged
merged 3 commits into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions phnt/include/ntregapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -539,8 +539,8 @@ typedef struct _VR_UNLOAD_DIFFERENCING_HIVE_FOR_HOST
#endif

#ifndef REG_OPEN_LEGAL_OPTION
#define REG_OPEN_LEGAL_OPTION
(REG_OPTION_RESERVED | REG_OPTION_BACKUP_RESTORE |
#define REG_OPEN_LEGAL_OPTION \
(REG_OPTION_RESERVED | REG_OPTION_BACKUP_RESTORE | \
REG_OPTION_OPEN_LINK | REG_OPTION_DONT_VIRTUALIZE)
#endif

Expand Down
2 changes: 1 addition & 1 deletion phnt/include/phnt_windows.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#endif

#ifndef MINLONGLONG
// The Windows SDK basetsd.h references non-existant MAXLONGLONG definition
// The Windows SDK basetsd.h references non-existent MAXLONGLONG definition
// and breaks MINLONGLONG or in other cases results in a definition of zero. (dmex)
#define MINLONGLONG ((LONGLONG)~MAXLONGLONG)
#endif
Expand Down
Loading