Advertisement
PierrotLL

grayscreenshotlib.h

May 13th, 2011
566
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.43 KB | None | 0 0
  1.  
  2. #ifndef _GRAYSCREENSHOTLIB
  3. #define _GRAYSCREENSHOTLIB
  4.  
  5. void gsl_init(int n_screenshot);
  6. void gsl_quit();
  7.  
  8. void gsl_screenshot(const unsigned char* light_buffer, const unsigned char* dark_buffer);
  9.  
  10. static int gsl_CreateFile(const unsigned short *, int);
  11. static int gsl_WriteFile(int, void*, int);
  12. static int gsl_OpenFile(const unsigned short *, int);
  13. static int gsl_CloseFile(int);
  14. static int gsl_GetTicks(void);
  15.  
  16. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement