]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/row.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Modules / _sqlite / row.h
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/row.h b/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/row.h
deleted file mode 100644 (file)
index bec80d5..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* row.h - an enhanced tuple for database rows\r
- *\r
- * Copyright (C) 2005-2010 Gerhard Häring <gh@ghaering.de>\r
- *\r
- * This file is part of pysqlite.\r
- *\r
- * This software is provided 'as-is', without any express or implied\r
- * warranty.  In no event will the authors be held liable for any damages\r
- * arising from the use of this software.\r
- *\r
- * Permission is granted to anyone to use this software for any purpose,\r
- * including commercial applications, and to alter it and redistribute it\r
- * freely, subject to the following restrictions:\r
- *\r
- * 1. The origin of this software must not be misrepresented; you must not\r
- *    claim that you wrote the original software. If you use this software\r
- *    in a product, an acknowledgment in the product documentation would be\r
- *    appreciated but is not required.\r
- * 2. Altered source versions must be plainly marked as such, and must not be\r
- *    misrepresented as being the original software.\r
- * 3. This notice may not be removed or altered from any source distribution.\r
- */\r
-\r
-#ifndef PYSQLITE_ROW_H\r
-#define PYSQLITE_ROW_H\r
-#include "Python.h"\r
-\r
-typedef struct _Row\r
-{\r
-    PyObject_HEAD\r
-    PyObject* data;\r
-    PyObject* description;\r
-} pysqlite_Row;\r
-\r
-extern PyTypeObject pysqlite_RowType;\r
-\r
-int pysqlite_row_setup_types(void);\r
-\r
-#endif\r