summaryrefslogtreecommitdiffstats
path: root/trunk/source/hiscores.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/source/hiscores.h')
-rw-r--r--trunk/source/hiscores.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/trunk/source/hiscores.h b/trunk/source/hiscores.h
new file mode 100644
index 0000000000..2cb5f4786f
--- /dev/null
+++ b/trunk/source/hiscores.h
@@ -0,0 +1,35 @@
+/*
+ * File: hiscores.h
+ * Summary: Scorefile manipulation functions
+ * Written by: Gordon Lipford
+ *
+ * Change History (most recent first):
+ *
+ * <1> 16feb2001 GDL Created
+ */
+
+
+#ifndef HISCORES_H
+#define HISCORES_H
+
+// last updated 16feb2001 {gdl}
+/* ***********************************************************************
+ * called from: ouch
+ * *********************************************************************** */
+void hiscores_new_entry( struct scorefile_entry &se );
+
+// last updated 16feb2001 {gdl}
+/* ***********************************************************************
+ * called from: acr ouch
+ * *********************************************************************** */
+void hiscores_print_list( int display_count = -1, int format = SCORE_TERSE );
+
+// last updated 16feb2001 {gdl}
+/* ***********************************************************************
+ * called from: ouch hiscores
+ * *********************************************************************** */
+void hiscores_format_single( char *buffer, struct scorefile_entry &se );
+int hiscores_format_single_long( char *buffer, struct scorefile_entry &se,
+ bool verbose = false );
+
+#endif // HISCORES_H