Skip to content

Commit

Permalink
Added patent information.
Browse files Browse the repository at this point in the history
  • Loading branch information
brennan-tv committed Aug 20, 2012
1 parent 4be1afb commit 1261df8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions EOT.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
#include <stdbool.h>
#include <stdint.h>

#include "EOTError.h"

struct EUDCInfo
{
bool exists;
Expand Down Expand Up @@ -81,6 +83,12 @@ struct EOTMetadata
struct EUDCInfo eudcInfo;
};

unsigned EOTgetMetadataLength(uint8_t *bytes);
uint32_t EOTreadU32LE(uint8_t *bytes);
uint16_t EOTreadU16LE(uint8_t *bytes);
enum EOTError EOTfillMetadata(uint8_t *bytes, unsigned bytesLength,
enum EOTMetadata *out);

#endif /* #define __LIBEOT_EOT_H__ */

/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
2 changes: 2 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Read the PATENTS file for important information on patents.
-----
Copyright (c) 2012 Brennan Vincent

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
Expand Down
4 changes: 4 additions & 0 deletions PATENTS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This library makes use of information patented by Microsoft and Monotype Imaging.
I, the developer of this library, have made a good-faith effort to verify that this library does not infringe on intellectual property law, in view of Microsoft and Monotype's patent grants associated with their submission of the EOT format to W3C, as described here: http://www.w3.org/Submission/2008/01/

I am reasonably sure that this library does not violate the intellectual property laws of my jurisdiction (Arizona, United States). However, I am not a legal expert, so I cannot be perfectly certain. Users of this library are responsible for verifying that it complies with all applicable laws. I absolve myself of any responsibility in this area.

0 comments on commit 1261df8

Please sign in to comment.