~ubuntu-branches/ubuntu/wily/libwpd/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/WP6FileStructure.cpp

  • Committer: Package Import Robot
  • Author(s): Rene Engelhard
  • Date: 2014-08-08 00:35:26 UTC
  • mfrom: (11.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20140808003526-7pku3062w50cnsod
Tags: 0.10.0-2
* upload to unstable

* fix debian/copyright for MPL-2.0 | LGPL-2.1+ dual-license 

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "WP6FileStructure.h"
28
28
 
29
29
// size of the fixed length functiongroups 0xF0 to 0xFF
30
 
uint8_t WP6_FIXED_LENGTH_FUNCTION_GROUP_SIZE[16] =
 
30
unsigned char WP6_FIXED_LENGTH_FUNCTION_GROUP_SIZE[16] =
31
31
{
32
32
        4,      // 0xF0
33
33
        5,      // 0xF1
44
44
        6,      // 0xFC
45
45
        8,      // 0xFD
46
46
        8,      // 0xFE
47
 
        (uint8_t)-1     // 0xFF - Cannot be used. -1 is reserved so no size is assigned to this value.
 
47
        (unsigned char)-1       // 0xFF - Cannot be used. -1 is reserved so no size is assigned to this value.
48
48
};
49
49
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */