summaryrefslogtreecommitdiff
path: root/psutil/arch/windows/process_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/arch/windows/process_info.h')
-rw-r--r--psutil/arch/windows/process_info.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/psutil/arch/windows/process_info.h b/psutil/arch/windows/process_info.h
index 5e89ddeb..26190427 100644
--- a/psutil/arch/windows/process_info.h
+++ b/psutil/arch/windows/process_info.h
@@ -15,7 +15,7 @@
int psutil_get_proc_info(DWORD pid, PSYSTEM_PROCESS_INFORMATION *retProcess,
PVOID *retBuffer);
-PyObject* psutil_get_cmdline(DWORD pid, int use_peb);
-PyObject* psutil_get_cwd(DWORD pid);
-PyObject* psutil_get_environ(DWORD pid);
+PyObject* psutil_proc_cmdline(PyObject *self, PyObject *args, PyObject *kwdict);
+PyObject* psutil_proc_cwd(PyObject *self, PyObject *args);
+PyObject* psutil_proc_environ(PyObject *self, PyObject *args);
PyObject* psutil_proc_info(PyObject *self, PyObject *args);