aboutsummaryrefslogtreecommitdiff
path: root/nxcompext/Mask.h
blob: 5d6024f59ffd0cf1258343e7b8d7015c4d9b0af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**************************************************************************/
/*                                                                        */
/* Copyright (c) 2001, 2007 NoMachine, http://www.nomachine.com/.         */
/*                                                                        */
/* NXCOMPEXT, NX protocol compression and NX extensions to this software  */
/* are copyright of NoMachine. Redistribution and use of the present      */
/* software is allowed according to terms specified in the file LICENSE   */
/* which comes in the source distribution.                                */
/*                                                                        */
/* Check http://www.nomachine.com/licensing.html for applicability.       */
/*                                                                        */
/* NX and NoMachine are trademarks of NoMachine S.r.l.                    */
/*                                                                        */
/* All rigths reserved.                                                   */
/*                                                                        */
/**************************************************************************/

#ifndef Mask_H
#define Mask_H

#ifdef __cplusplus
extern "C" {
#endif

#include "Xlib.h"

extern int MaskImage(const ColorMask *mask, XImage *src_image, XImage *dst_image);

extern int MaskInPlaceImage(const ColorMask *mask, XImage *image);

extern int PackImage(unsigned int method, unsigned int src_data_size, XImage *src_image,
                         unsigned int dst_data_size, XImage *dst_image);

int FindLSB(int word);

#ifdef __cplusplus
}
#endif

#endif /* Mask_H */