summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-13 07:40:38 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-13 07:40:38 +0000
commit0a577362dfe772e6e13eebce39489327b282c98d (patch)
tree37a711b4df281a28dd74385da6b3ceb02c211389 /crawl-ref/source/itemprop.h
parent53fa153719a82b238120b85f3e16644c31a67ff4 (diff)
downloadcrawl-ref-0a577362dfe772e6e13eebce39489327b282c98d.tar.gz
crawl-ref-0a577362dfe772e6e13eebce39489327b282c98d.zip
Cleaned up some of the randart code.
Fixed a free-without-malloc security issue (of art_n.) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1291 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/itemprop.h')
-rw-r--r--crawl-ref/source/itemprop.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/itemprop.h b/crawl-ref/source/itemprop.h
index 9e5428106e..897eb3ef28 100644
--- a/crawl-ref/source/itemprop.h
+++ b/crawl-ref/source/itemprop.h
@@ -145,4 +145,8 @@ bool is_shield(const item_def &item);
bool is_shield_incompatible(const item_def &weapon,
const item_def *shield = NULL);
+// Only works for armour/weapons/missiles
+const char* item_base_name(const item_def &item);
+const char* item_base_name(object_class_type basetype, unsigned char subtype);
+
#endif