Add missing copyright information (#862)

This commit is contained in:
Anton Kochkov 2021-03-19 15:57:07 +08:00 committed by GitHub
parent ddcefec614
commit a690e8f18d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 55 additions and 2 deletions

View file

@ -135,6 +135,14 @@ Files: librz/magic/d/default/*
Copyright: 1986, 1987, 1989, 1990, 1991, 1992, 1994, 1995 Ian F. Darwin
License: BSD-2-Clause
Files: librz/syscall/d/*
Copyright: 2011 RadareOrg <pancake@nopcode.org>
License: LGPL-3.0-only
Files: librz/syscall/d2/*
Copyright: 2018 RadareOrg <pancake@nopcode.org>
License: LGPL-3.0-only
Files: pkgcfg/*.pc.acr
Copyright: 2009 RadareOrg <pancake@nopcode.org>
License: LGPL-3.0-only

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2012-2018 Free Software Foundation, Inc.
// SPDX-License-Identifier: GPL-3.0-or-later
/* aarch64-dis.h -- Header file for aarch64-dis.c and aarch64-dis-2.c.
Copyright (C) 2012-2018 Free Software Foundation, Inc.
Contributed by ARM Ltd.

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2012-2018 Free Software Foundation, Inc.
// SPDX-License-Identifier: GPL-3.0-or-later
/* aarch64-opc.h -- Header file for aarch64-opc.c and aarch64-opc-2.c.
Copyright (C) 2012-2018 Free Software Foundation, Inc.
Contributed by ARM Ltd.

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2012-2018 Free Software Foundation, Inc.
// SPDX-License-Identifier: GPL-3.0-or-later
/* aarch64-tbl.h -- AArch64 opcode description table and instruction
operand description table.
Copyright (C) 2012-2018 Free Software Foundation, Inc.

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2009-2018 Free Software Foundation, Inc.
// SPDX-License-Identifier: GPL-3.0-or-later
/* AArch64 assembler/disassembler support.
Copyright (C) 2009-2018 Free Software Foundation, Inc.

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 1995-2018 Free Software Foundation, Inc.
// SPDX-License-Identifier: GPL-3.0-or-later
/* Random host-dependent support code.
Copyright (C) 1995-2018 Free Software Foundation, Inc.
Written by Ken Raeburn.

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2018-2020 deroad <wargio@libero.it>
// SPDX-License-Identifier: LGPL-3.0-only
#ifndef MCORE_H
#define MCORE_H

View file

@ -1,3 +1,8 @@
// SPDX-FileCopyrightText: 2016 Rakholiya Jenish
// SPDX-FileCopyrightText: 2016 NighterMan <jpenalbae@gmail.com>
// SPDX-FileCopyrightText: 2017-2020 pancake <pancake@nopcode.org>
// SPDX-License-Identifier: LGPL-3.0-only
#ifndef __GNU__
#include "io_rzk_linux.h"

View file

@ -1,3 +1,8 @@
// SPDX-FileCopyrightText: 2016 Rakholiya Jenish
// SPDX-FileCopyrightText: 2016 NighterMan <jpenalbae@gmail.com>
// SPDX-FileCopyrightText: 2017-2020 pancake <pancake@nopcode.org>
// SPDX-License-Identifier: LGPL-3.0-only
#ifndef __IO_RZK_LINUX_H__
#define __IO_RZK_LINUX_H__

View file

@ -1,3 +1,8 @@
// SPDX-FileCopyrightText: 2016 skuater <skuater@hotmail.com>
// SPDX-FileCopyrightText: 2016 Rakholiya Jenish
// SPDX-FileCopyrightText: 2017 Jose Diaz <josediazplay@gmail.com>
// SPDX-License-Identifier: LGPL-3.0-only
#include "io_rzk_windows.h"
HANDLE gHandleDriver = NULL;

View file

@ -1,3 +1,8 @@
// SPDX-FileCopyrightText: 2016 skuater <skuater@hotmail.com>
// SPDX-FileCopyrightText: 2016 Rakholiya Jenish
// SPDX-FileCopyrightText: 2017 Jose Diaz <josediazplay@gmail.com>
// SPDX-License-Identifier: LGPL-3.0-only
#ifndef __IO_RZK_WINDOWS_H__
#define __IO_RZK_WINDOWS_H__

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2010-2020 pancake <pancake@nopcode.org>
// SPDX-FileCopyrightText: 2016 Roman Valls Guimera <brainstorm@nopcode.org>
// SPDX-License-Identifier: LGPL-3.0-only
#include "rz_syscall.h"
RzSyscallPort sysport_x86[] = {

View file

@ -1,10 +1,13 @@
// SPDX-FileCopyrightText: 2019 GustavoLCR <gugulcr@gmail.com>
// SPDX-License-Identifier: LGPL-3.0-only
#ifndef WINDOWS_HEAP_H
#define WINDOWS_HEAP_H
#include <windows.h>
#include <winternl.h>
/*
/*
Defines most of heap related structures on Windows (some still missing)
Tested only on Windows 10 1809 x64
TODO:
@ -1010,4 +1013,4 @@ __kernel_entry NTSTATUS (NTAPI *w32_NtQueryInformationProcess)(
IN ULONG ProcessInformationLength,
OUT PULONG ReturnLength
);
#endif
#endif