Update copyright info for 2008 (minishogi patches) and recent developments.
[gnushogi.git] / gnushogi / rawdsp.h
index 4c21156..952b8c5 100644 (file)
@@ -4,11 +4,15 @@
  *     Raw text interface for GNU Shogi.
  *
  * ----------------------------------------------------------------------
- *
- * Copyright (c) 2012 Free Software Foundation
+ * Copyright (c) 1993, 1994, 1995 Matthias Mutz
+ * Copyright (c) 1999 Michael Vanier and the Free Software Foundation
+ * Copyright (c) 2008, 2013, 2014 Yann Dirson and the Free Software Foundation
  *
  * GNU SHOGI is based on GNU CHESS
  *
+ * Copyright (c) 1988, 1989, 1990 John Stanback
+ * Copyright (c) 1992 Free Software Foundation
+ *
  * This file is part of GNU SHOGI.
  *
  * GNU Shogi is free software; you can redistribute it and/or modify it
@@ -31,6 +35,8 @@
 #ifndef _RAWDSP_H_
 #define _RAWDSP_H_
 
+#include "gnushogi.h"
+
 /* The following are common to rawdsp.h and cursesdsp.h */
 
 void Raw_ChangeAlphaWindow(void);
@@ -46,7 +52,9 @@ void Raw_EditBoard(void);
 void Raw_ExitShogi(void);
 void Raw_GiveHint(void);
 void Raw_Initialize(void);
+void Raw_ShowNodeCnt(long NodeCnt);
 void Raw_OutputMove(void);
+void Raw_PollForInput(void);
 void Raw_SearchStartStuff(short side);
 void Raw_SelectLevel(char *sx);
 void Raw_SetContempt(void);
@@ -55,22 +63,23 @@ void Raw_ShowDepth(char ch);
 void Raw_ShowGameType(void);
 void Raw_ShowLine(unsigned short *bstline);
 void Raw_ShowMessage(char *s);
+void Raw_AlwaysShowMessage(const char *format, va_list ap);
+void Raw_Printf(const char *format, va_list ap);
+void Raw_doRequestInputString(const char* fmt, char* buffer);
+int  Raw_GetString(char* sx);
+void Raw_SetupBoard(void);
 void Raw_ShowPatternCount(short side, short n);
 void Raw_ShowPostnValue(short sq);
 void Raw_ShowPostnValues(void);
+void Raw_ShowPrompt(void);
 void Raw_ShowResponseTime(void);
 void Raw_ShowResults(short score, unsigned short *bstline, char ch);
 void Raw_ShowSidetoMove(void);
 void Raw_ShowStage(void);
 void Raw_TerminateSearch(int sig);
+void Raw_UpdateClocks(void);
 void Raw_UpdateDisplay(short f, short t, short redraw, short isspec);
 void Raw_help(void);
 
-
-/* The following are only found in rawdsp.h: */
-
-void PromptForMove(void);
-void SetupBoard(void);
-
 #endif /* _RAWDSP_H_ */