Advertisement
Guest User

DcsBios.h

a guest
Jan 31st, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. extern unsigned int leds; //put this line before namespace (beginning of code)
  2.  
  3. [...]
  4.  
  5. class LEDSR : ExportStreamListener {
  6.     private:
  7.         void onDcsBiosWrite(unsigned int address, unsigned int value);
  8.         unsigned char pin_;
  9.         unsigned int address_;
  10.         unsigned int mask_;
  11.         unsigned int leds_;
  12.     public:
  13.         LEDSR(unsigned int address, unsigned int mask, char pin);
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement