1 /*
2  * Copyright (c) 2009, Jay Loden, Giampaolo Rodola'. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6 
7 #include <Python.h>
8 
9 PyObject *psutil_disk_io_counters(PyObject *self, PyObject *args);
10 PyObject *psutil_disk_partitions(PyObject *self, PyObject *args);
11 PyObject *psutil_disk_usage(PyObject *self, PyObject *args);
12 PyObject *psutil_win32_QueryDosDevice(PyObject *self, PyObject *args);
13