]>
Dogcows Code - chaz/openbox/blob - src/python.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
4 # include "../config.h"
15 static PyObject
*shit(PyObject
*self
, PyObject
*args
)
17 if (!PyArg_ParseTuple(args
, ":shit"))
20 printf("SHIT CALLED!@!\n");
28 static PyMethodDef OBMethods
[] = {
29 {"shit", shit
, METH_VARARGS
,
32 /* {"get_client_dict", get_client_dict, METH_VARARGS,
33 "Get the list of all clients"},*/
40 OBClient_Type
.ob_type
= &PyType_Type
;
42 Py_InitModule("openbox", OBMethods
);
This page took 0.038877 seconds and 5 git commands to generate.