Advertisement
Guest User

_BCL method on ASUS N56VZ

a guest
Apr 27th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1.  
  2. unsigned char numLevels = 0x64 + 1; // defined as Local0
  3. numLevels += 2;
  4.  
  5. unsigned char BRPP[0x67]; // 0x67 == 103
  6. BRPP[0] = 0x64; // 0x64 == 100
  7. BRPP[1] = 0x28; // 0x28 == 40
  8.  
  9. unsigned char outIndex = 0x02; // defined as Local1
  10. unsigned char outValue = 0x64; // defined as Local2
  11. while( outIndex < numLevels )
  12. {
  13.     BRPP[outIndex] = outValue;
  14.     outIndex++;
  15.     outValue--;
  16. }
  17.  
  18. ... // code that I think is not relevant here
  19.  
  20. return BRPP;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement