cleanup: got rid of a lot of files that are not needed for a new release
[xboard.git] / winboard / wplugin.h
diff --git a/winboard/wplugin.h b/winboard/wplugin.h
deleted file mode 100644 (file)
index 2372cbc..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-/*\r
- * wplugin.h\r
- *\r
- * Copyright 2009 Free Software Foundation, Inc.\r
- * ------------------------------------------------------------------------\r
- *\r
- * GNU XBoard is free software: you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation, either version 3 of the License, or (at\r
- * your option) any later version.\r
- *\r
- * GNU XBoard is distributed in the hope that it will be useful, but\r
- * WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
- * General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program. If not, see http://www.gnu.org/licenses/.  *\r
- *\r
- *------------------------------------------------------------------------\r
- ** See the file ChangeLog for a revision history.  */\r
-\r
-#ifndef WPLUGIN_H_\r
-#define WPLUGIN_H_\r
-\r
-#include <windows.h>\r
-\r
-#define MaxWbPlugins 16\r
-\r
-typedef struct WbPlugin_tag\r
-{\r
-    char * name_;\r
-    char * exe_name_;\r
-    HANDLE hPipe_;\r
-    HANDLE hProcess_;\r
-} WbPlugin;\r
-\r
-typedef struct WbPluginList_tag\r
-{\r
-    int item_count_;\r
-    WbPlugin * item_[MaxWbPlugins];\r
-} WbPluginList;\r
-\r
-WbPlugin * wbpCreate( const char * name );\r
-\r
-void wbpDelete( WbPlugin * plugin );\r
-\r
-int wbpSendMessage( WbPlugin * plugin, const char * msg, size_t msg_len );\r
-\r
-int wbpListInit( WbPluginList * list );\r
-\r
-int wbpListAdd( WbPluginList * list, WbPlugin * plugin );\r
-\r
-WbPlugin * wbpListGet( WbPluginList * list, int index );\r
-\r
-int wbpListGetCount( WbPluginList * list );\r
-\r
-int wbpListDeleteAll( WbPluginList * list );\r
-\r
-int wbpListBroadcastMessage( WbPluginList * list, const char * msg, size_t msg_len );\r
-\r
-#endif // WPLUGIN_H_\r