moral rights

This commit is contained in:
olszomal 2021-04-21 11:53:29 +02:00 committed by Michał Trojnara
parent 9b3697ad76
commit b6e6165782
2 changed files with 18 additions and 1 deletions

7
msi.c
View File

@ -1,5 +1,10 @@
/* /*
* Microsoft Compound File Reader * MSI file support library
*
* Copyright (C) 2021 Michał Trojnara <Michal.Trojnara@stunnel.org>
* Author: Małgorzata Olszówka <Malgorzata.Olszowka@stunnel.org>
*
* Reference specifications:
* http://en.wikipedia.org/wiki/Compound_File_Binary_Format * http://en.wikipedia.org/wiki/Compound_File_Binary_Format
* https://msdn.microsoft.com/en-us/library/dd942138.aspx * https://msdn.microsoft.com/en-us/library/dd942138.aspx
* https://github.com/microsoft/compoundfilereader * https://github.com/microsoft/compoundfilereader

12
msi.h
View File

@ -1,3 +1,15 @@
/*
* MSI file support library
*
* Copyright (C) 2021 Michał Trojnara <Michal.Trojnara@stunnel.org>
* Author: Małgorzata Olszówka <Malgorzata.Olszowka@stunnel.org>
*
* Reference specifications:
* http://en.wikipedia.org/wiki/Compound_File_Binary_Format
* https://msdn.microsoft.com/en-us/library/dd942138.aspx
* https://github.com/microsoft/compoundfilereader
*/
#include <stdint.h> #include <stdint.h>
#include <openssl/safestack.h> #include <openssl/safestack.h>
#include <openssl/bio.h> #include <openssl/bio.h>