Advertisement
hoosier18

ScanContents.h

Feb 22nd, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. #include <process.h>
  2. #include <iostream>
  3. #include <Windows.h>
  4. #include <time.h>
  5. #include <stdlib.h>
  6.  
  7. class ScanContents
  8. {
  9. public:
  10.     BITMAP Bm;
  11.     RECT  RcWindow;
  12.     RGBQUAD * PPixels;
  13.  
  14.     ScanContents(BITMAP bm, RECT rcWindow, RGBQUAD * pPixels)
  15.     {
  16.         Bm = bm;
  17.        RcWindow = rcWindow;
  18.        PPixels = pPixels;
  19.     }
  20.  
  21.  
  22. };
  23.  
  24. class MouseCoord
  25. {
  26. public:
  27.     int X;
  28.     int Y;
  29.     MouseCoord (int x  int y)  
  30.        
  31.         X = x;
  32.         Y = y;
  33.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement