make menu text translatable
[enigma2.git] / lib / driver / rc.h
index 6653189af475dc9541a736c1f1b1901562cc3cae..2a776ee4d5e0ec35bf1fc9789a4a4e1c7ae62581 100644 (file)
@@ -41,7 +41,7 @@ public:
         * For Example, it might be 16bit codes with one bit make/break or special codes
         * for repeat.
         */
-       virtual void handleCode(int code)=0;
+       virtual void handleCode(long code)=0;
        /**
         * \brief Get user readable description.
         * \result The description.
@@ -126,11 +126,15 @@ public:
        }
        enum
        {
+                       /* there are not really flags.. */
+               flagMake=0,
                flagBreak=1,
                flagRepeat=2,
-               flagAscii=4
+               flagLong=3,
+                       /* but this is. */
+               flagAscii=4,
        };
-       
+
        bool operator<(const eRCKey &r) const
        {
                if (r.producer == producer)