Click here to Skip to main content
15,892,072 members
Articles / Desktop Programming / MFC

Fast screen, window, region and print screen capture

Rate me:
Please Sign up or sign in to vote.
1.39/5 (73 votes)
4 Dec 2002CPOL 341.8K   5K   67  
Screen Snaper is an fast screen, window, region and print screen capture
/***=========================================================================
====                                                                     ====
====                          D C U t i l i t y                          ====
====                                                                     ====
=============================================================================
====                                                                     ====
====    File name           :  Snaper Helper.h                           ====
====    Project name        :  Windows Snaper                            ====
====    Project number      :  ---                                       ====
====    Creation date       :  28/11/2002                                ====
====    Author(s)           :  Dany Cantin                               ====
====                                                                     ====
====                  Copyright � DCUtility  2003                        ====
====                                                                     ====
=============================================================================
===========================================================================*/
#ifndef SNAPERHELPER_H_
#define SNAPERHELPER_H_

#if _MSC_VER > 1000
#pragma once
#endif

#ifdef __cplusplus
    extern "C" {
#endif // __cplusplus

#ifdef SNAPERHELPER_EXPORT
    #define SNAPERHELPER_API __declspec(dllexport)
#else
    #define SNAPERHELPER_API __declspec(dllimport)
#endif

SNAPERHELPER_API BOOL BeginKeyboardHook(HWND hWnd);
SNAPERHELPER_API BOOL EndKeyboardHook(HWND hWnd);
SNAPERHELPER_API BOOL BeginMouseHook(HWND hWnd);
SNAPERHELPER_API BOOL EndMouseHook(HWND hWnd);

#ifdef __cplusplus
}
#endif // __cplusplus

#endif // SNAPERHELPER_H_

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO
Canada Canada

Comments and Discussions