/* prepare_protocol.h - the protocol for preparing values for SQLite1*2* Copyright (C) 2005-2010 Gerhard Häring <[email protected]>3*4* This file is part of pysqlite.5*6* This software is provided 'as-is', without any express or implied7* warranty. In no event will the authors be held liable for any damages8* arising from the use of this software.9*10* Permission is granted to anyone to use this software for any purpose,11* including commercial applications, and to alter it and redistribute it12* freely, subject to the following restrictions:13*14* 1. The origin of this software must not be misrepresented; you must not15* claim that you wrote the original software. If you use this software16* in a product, an acknowledgment in the product documentation would be17* appreciated but is not required.18* 2. Altered source versions must be plainly marked as such, and must not be19* misrepresented as being the original software.20* 3. This notice may not be removed or altered from any source distribution.21*/2223#ifndef PYSQLITE_PREPARE_PROTOCOL_H24#define PYSQLITE_PREPARE_PROTOCOL_H25#include "module.h"2627typedef struct28{29PyObject_HEAD30} pysqlite_PrepareProtocol;3132int pysqlite_prepare_protocol_setup_types(PyObject *module);3334#endif353637