Skip to content

Commit

Permalink
Add flags to win32comext.internet functions
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyroberts committed Jun 29, 2022
1 parent e1c0237 commit 6b10e4f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions com/win32comext/internet/src/internet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,10 @@ static PyObject *PyCoInternetCreateSecurityManager(PyObject *self, PyObject *arg
/* List of module functions */
// @module internet|A module, encapsulating the ActiveX Internet interfaces
static struct PyMethodDef internet_functions[] = {
{"CoInternetCreateSecurityManager", PyCoInternetCreateSecurityManager}, // @pymeth CoInternetCreateSecurityManager|
{"CoInternetIsFeatureEnabled", PyCoInternetIsFeatureEnabled}, // @pymeth CoInternetIsFeatureEnabled|
{"CoInternetSetFeatureEnabled", PyCoInternetSetFeatureEnabled}, // @pymeth CoInternetSetFeatureEnabled|
{"CoInternetCreateSecurityManager", PyCoInternetCreateSecurityManager,
1}, // @pymeth CoInternetCreateSecurityManager|
{"CoInternetIsFeatureEnabled", PyCoInternetIsFeatureEnabled, 1}, // @pymeth CoInternetIsFeatureEnabled|
{"CoInternetSetFeatureEnabled", PyCoInternetSetFeatureEnabled, 1}, // @pymeth CoInternetSetFeatureEnabled|
{NULL, NULL},
};

Expand Down

0 comments on commit 6b10e4f

Please sign in to comment.