python: Started with new header file

pull/1498/head
igo95862 3 years ago
parent 052b9148e7
commit 32075e22dc
No known key found for this signature in database
GPG Key ID: F1A55E62951B2143

@ -0,0 +1,137 @@
// SPDX-License-Identifier: Apache-2.0
/*
Copyright 2020, 2021 igo95862
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#pragma once
#define PY_SSIZE_T_CLEAN
#include <Python.h>
#include <notcurses/notcurses.h>
#include <notcurses/direct.h>
// Define structs
typedef struct
{
PyObject_HEAD;
struct notcurses *notcurses_ptr;
} NotcursesObject;
typedef struct
{
PyObject_HEAD;
struct ncplane *ncplane_ptr;
} NcPlaneObject;
typedef struct
{
PyObject_HEAD;
struct ncuplot *ncuplot_ptr;
} NcUplotObject;
typedef struct
{
PyObject_HEAD;
struct ncdplot *ncdplot_ptr;
} NcDplotObject;
typedef struct
{
PyObject_HEAD;
struct ncprogbar *ncprogbar_ptr;
} NcProgBarObject;
typedef struct
{
PyObject_HEAD;
struct ncfdplane *ncfdplane_ptr;
} NcFdPlaneObject;
typedef struct
{
PyObject_HEAD;
struct ncsubproc *ncsubproc_ptr;
} NcSubProcObject;
typedef struct
{
PyObject_HEAD;
struct ncselector *ncselector_ptr;
} NcSelectorObject;
typedef struct
{
PyObject_HEAD;
struct ncplane *ncmultiselector_ptr;
} NcMultiSelectorObject;
typedef struct
{
PyObject_HEAD;
struct ncreader *ncreader_ptr;
} NcReaderObject;
typedef struct
{
PyObject_HEAD;
struct ncfadectx *ncfadectx_ptr;
} NcFadeCtxObject;
typedef struct
{
PyObject_HEAD;
struct nctablet *nctablet_ptr;
} NcTabletObject;
typedef struct
{
PyObject_HEAD;
struct ncreel *ncreel_ptr;
} NcReelObject;
typedef struct
{
PyObject_HEAD;
struct nctab *nctab_ptr;
} NcTabObject;
typedef struct
{
PyObject_HEAD;
struct nctabbed *nctabbed_ptr;
} NcTabbedObject;
typedef struct
{
PyObject_HEAD;
struct nccell nccell;
} NcCellObject;
typedef struct
{
PyObject_HEAD;
struct ncinput ncinput;
} NcInputObject;
typedef struct
{
PyObject_HEAD;
struct ncstats ncstats;
} NcStatsObject;
typedef struct
{
PyObject_HEAD;
struct palette256 palette256;
} Palette256Object;
Loading…
Cancel
Save