From ebdffc8cf6505040c03dae2174e1561a0117a890 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Wed, 2 Nov 2011 00:10:08 -0400 Subject: [PATCH] Add experimental lua binding GetArchName. If this gets the requested results, it will stay and be documented. Otherwise, it will be reverted or otherwise fixed later. --- src/arch/ArchHooks/ArchHooks.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/arch/ArchHooks/ArchHooks.cpp b/src/arch/ArchHooks/ArchHooks.cpp index b14a88e818..2925c6a723 100644 --- a/src/arch/ArchHooks/ArchHooks.cpp +++ b/src/arch/ArchHooks/ArchHooks.cpp @@ -62,10 +62,12 @@ class LunaArchHooks: public Luna { public: DEFINE_METHOD( AppHasFocus, AppHasFocus() ); + DEFINE_METHOD( GetArchName, GetArchName() ); LunaArchHooks() { ADD_METHOD( AppHasFocus ); + ADD_METHOD( GetArchName ); } };