mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-20 18:25:12 -04:00
Remove spaces before EOL
This commit is contained in:
parent
45441a6da7
commit
31cc0ae78a
70 changed files with 906 additions and 844 deletions
|
@ -7,14 +7,14 @@
|
|||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. Neither the name of the project nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
|
@ -25,7 +25,7 @@
|
|||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
|
@ -42,45 +42,45 @@ extern "C" {
|
|||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
|
||||
#pragma pack(1)
|
||||
|
||||
|
||||
typedef struct rect_l {
|
||||
int32_t left;
|
||||
int32_t top;
|
||||
int32_t right;
|
||||
int32_t bottom;
|
||||
} rect_l_t;
|
||||
|
||||
|
||||
typedef struct size_l {
|
||||
uint32_t cx;
|
||||
uint32_t cy;
|
||||
} size_l_t;
|
||||
|
||||
|
||||
typedef struct point_l {
|
||||
int32_t x;
|
||||
int32_t y;
|
||||
} point_l_t;
|
||||
|
||||
|
||||
typedef struct color_ref {
|
||||
uint8_t red;
|
||||
uint8_t green;
|
||||
uint8_t blue;
|
||||
uint8_t reserved;
|
||||
} color_ref_t;
|
||||
|
||||
|
||||
typedef struct log_brush_ex {
|
||||
uint32_t brush_style;
|
||||
color_ref_t color;
|
||||
uint32_t brush_hatch;
|
||||
} log_brush_ex_t;
|
||||
|
||||
|
||||
typedef struct log_pen {
|
||||
uint32_t pen_style;
|
||||
point_l_t width;
|
||||
color_ref_t color_ref;
|
||||
} log_pen_t;
|
||||
|
||||
|
||||
typedef struct log_font {
|
||||
int32_t height;
|
||||
int32_t width;
|
||||
|
@ -97,7 +97,7 @@ extern "C" {
|
|||
uint8_t pitch_and_family;
|
||||
unsigned char facename[64];
|
||||
} log_font_t;
|
||||
|
||||
|
||||
typedef struct emr_text {
|
||||
point_l_t reference;
|
||||
uint32_t chars;
|
||||
|
@ -106,7 +106,7 @@ extern "C" {
|
|||
rect_l_t rectangle;
|
||||
uint32_t off_dx;
|
||||
} emr_text_t;
|
||||
|
||||
|
||||
typedef struct emf_header {
|
||||
rect_l_t bounds;
|
||||
rect_l_t frame;
|
||||
|
@ -122,45 +122,45 @@ extern "C" {
|
|||
size_l_t device;
|
||||
size_l_t millimeters;
|
||||
} emf_header_t;
|
||||
|
||||
|
||||
typedef struct emr_header {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
emf_header_t emf_header;
|
||||
} emr_header_t;
|
||||
|
||||
|
||||
typedef struct emr_createbrushindirect {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
uint32_t ih_brush;
|
||||
log_brush_ex_t log_brush;
|
||||
} emr_createbrushindirect_t;
|
||||
|
||||
|
||||
typedef struct emr_createpen {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
uint32_t ih_pen;
|
||||
log_pen_t log_pen;
|
||||
} emr_createpen_t;
|
||||
|
||||
|
||||
typedef struct emr_selectobject {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
uint32_t ih_object;
|
||||
} emr_selectobject_t;
|
||||
|
||||
|
||||
typedef struct emr_rectangle {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
rect_l_t box;
|
||||
} emr_rectangle_t;
|
||||
|
||||
|
||||
typedef struct emr_ellipse {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
rect_l_t box;
|
||||
} emr_ellipse_t;
|
||||
|
||||
|
||||
typedef struct emr_polygon {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
|
@ -173,14 +173,14 @@ extern "C" {
|
|||
point_l_t a_points_e;
|
||||
point_l_t a_points_f;
|
||||
} emr_polygon_t;
|
||||
|
||||
|
||||
typedef struct emr_extcreatefontindirectw {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
uint32_t ih_fonts;
|
||||
log_font_t elw;
|
||||
} emr_extcreatefontindirectw_t;
|
||||
|
||||
|
||||
typedef struct emr_exttextoutw {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
|
@ -190,7 +190,7 @@ extern "C" {
|
|||
float ey_scale;
|
||||
emr_text_t w_emr_text;
|
||||
} emr_exttextoutw_t;
|
||||
|
||||
|
||||
typedef struct emr_eof {
|
||||
uint32_t type;
|
||||
uint32_t size;
|
||||
|
@ -198,14 +198,14 @@ extern "C" {
|
|||
uint32_t off_pal_entries;
|
||||
uint32_t size_last;
|
||||
} emr_eof_t;
|
||||
|
||||
|
||||
typedef struct box {
|
||||
emr_rectangle_t top;
|
||||
emr_rectangle_t bottom;
|
||||
emr_rectangle_t left;
|
||||
emr_rectangle_t right;
|
||||
} box_t;
|
||||
|
||||
|
||||
#pragma pack()
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -214,3 +214,4 @@ extern "C" {
|
|||
|
||||
#endif /* EMF_H */
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue