-
Notifications
You must be signed in to change notification settings - Fork 799
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
Removed considerations for Windows 95/98/ME #2400
base: main
Are you sure you want to change the base?
Conversation
c06e77c
to
2935175
Compare
// Global\\ etc goodness: | ||
// On NT4/9x, 'Global\\' is not understood and will fail. | ||
// On 2k/XP, anyone can create 'global' objects. | ||
// On Vista, you need elavated perms to create global objects - however, once | ||
// On Vista, you need elevated perms to create global objects - however, once | ||
// it has been created and permissions adjusted, a user with normal | ||
// permissions can open these global objects. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deferred to #2399
// Do a LoadLibrary, as the Ex version may not always exist on Win95. | ||
// TODO: We no longer support Windows 95, how should this code be updated ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We no longer support Windows 95, how should this code be updated ?
# in order to *use* the username/password of a particular dun entry, | ||
# one must explicitly get those params under Win95 ... | ||
# TODO: We no longer support Windows 95, how should this code be updated ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We no longer support Windows 95, how should this code be updated ?
| win32con.MIIM_TYPE | ||
) | ||
# Note: No MIIM_TYPE - this screws win2k/98. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be tested, I have no idea of its actual effect. Just following the comment.
// On platforms that don't have NT security, | ||
// the initialization of the SECURITY_DESCRIPTOR should fail, | ||
// leaving the sd NULL. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please review this carefully, I'm a bit out of my depth in certain places and am left guessing. I've left GitHub comments on specific files.