Hengband  2.2.1
report.h
[詳解]
1 #pragma once
2 
3 extern concptr screen_dump;
4 
5 #ifdef WORLD_SCORE
6 /* report.c */
7 extern errr report_score(void);
8 extern concptr make_screen_dump(void);
9 #endif
concptr make_screen_dump(void)
スクリーンダンプを作成する/ Make screen dump to buffer
Definition: report.c:327
const char * concptr
文字列定数用ポインタ定義 / A simple pointer (to unmodifiable strings)
Definition: h-type.h:47
errr report_score(void)
スコア転送処理のメインルーチン
Definition: report.c:452
int errr
エラーコードの定義 / Error codes for function return values
Definition: h-type.h:57
concptr screen_dump
Definition: report.c:49