Guest User

Untitled

a guest
Jul 4th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. PInvokeStackBalance keeps being detected while the signature is OK
  2. void EXPORT_API vSetLights(BYTE byLights)
  3. {
  4. remote.SetLEDs(byLights);
  5. }
  6.  
  7. [DllImport("APlugin")]
  8. private static extern void vSetLights(byte byLights);
  9.  
  10. byte byLeds = 0x0;
  11. vSetLights(byLeds);
Advertisement
Add Comment
Please, Sign In to add comment