Advertisement
NickG

cpos.hpp

Apr 30th, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #ifndef __CURSORPOSITION__
  2. #define __CURSORPOSITION__
  3.  
  4. struct coord_t {
  5. int x;
  6. int y;
  7. };
  8.  
  9. coord_t getpos();
  10. void setpos(int, int);
  11.  
  12. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement