関数 | |
| BOOL | py_from_PORT_INFO_1 (PyObject **dict, PORT_INFO_1 *info) |
| BOOL | py_to_PORT_INFO_1 (PORT_INFO_1 *info, PyObject *dict) |
| BOOL | py_from_PORT_INFO_2 (PyObject **dict, PORT_INFO_2 *info) |
| BOOL | py_to_PORT_INFO_2 (PORT_INFO_2 *info, PyObject *dict) |
変数 | |
| pyconv | py_PORT_INFO_1 [] |
| pyconv | py_PORT_INFO_2 [] |
| BOOL py_from_PORT_INFO_1 | ( | PyObject ** | dict, | |
| PORT_INFO_1 * | info | |||
| ) |
py_spoolss_ports_conv.c の 38 行で定義されています。
参照先 from_struct()・py_PORT_INFO_1.
参照元 spoolss_enumports().
00039 { 00040 *dict = from_struct(info, py_PORT_INFO_1); 00041 return True; 00042 }
| BOOL py_to_PORT_INFO_1 | ( | PORT_INFO_1 * | info, | |
| PyObject * | dict | |||
| ) |
| BOOL py_from_PORT_INFO_2 | ( | PyObject ** | dict, | |
| PORT_INFO_2 * | info | |||
| ) |
py_spoolss_ports_conv.c の 49 行で定義されています。
参照先 from_struct()・py_PORT_INFO_2.
参照元 spoolss_enumports().
00050 { 00051 *dict = from_struct(info, py_PORT_INFO_2); 00052 return True; 00053 }
| BOOL py_to_PORT_INFO_2 | ( | PORT_INFO_2 * | info, | |
| PyObject * | dict | |||
| ) |
| struct pyconv py_PORT_INFO_1[] |
初期値:
{
{ "name", PY_UNISTR, offsetof(PORT_INFO_1, port_name) },
{ NULL }
}
py_spoolss_ports_conv.c の 24 行で定義されています。
| struct pyconv py_PORT_INFO_2[] |
初期値:
{
{ "name", PY_UNISTR, offsetof(PORT_INFO_2, port_name) },
{ "monitor_name", PY_UNISTR, offsetof(PORT_INFO_2, monitor_name) },
{ "description", PY_UNISTR, offsetof(PORT_INFO_2, description) },
{ "reserved", PY_UINT32, offsetof(PORT_INFO_2, reserved) },
{ "type", PY_UINT32, offsetof(PORT_INFO_2, port_type) },
{ NULL }
}
py_spoolss_ports_conv.c の 29 行で定義されています。
1.4.7