text stringlengths 4 6.14k |
|---|
/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtCore module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
**... |
char *keywords[] = {
"device",
"default",
"acl",
"slot",
"shelf",
"interface",
"target",
"filename",
"access-list",
"name",
"policy",
"accept",
"reject",
"writecache",
"broadcast",
"log-level",
"syslog-level",
"syslog-facility",
... |
/*
Launchy: Application Launcher
Copyright (C) 2007 Josh Karlin
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program ... |
/*
* This program is is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that i... |
#pragma once
#ifndef _ENTITY_H_
#define _ENTITY_H_
#include "rlUtilJM.h"
#include "rlVector2.h"
class Entity {
public:
///<param name="_type">The entity's type. Use CHARACTER, BACKGROUND or WALL</param>
Entity(const int& _type, const int& _x, const int& _y);
///<summary>Empty entity</summary>
Entity();
~Entity();... |
/*
** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
** See ../LICENSE for license information.
**
*/
# ifndef FUNCTIONCLAUSELIST_H
# define FUNCTIONCLAUSELIST_H
/*:private:*/ typedef /*@only@*/ functionClause o_functionClause;
struct s_functionClauseList
{
int nelements... |
#import <CoreData/CoreData.h>
#import "AbstractPost.h"
@class Coordinate;
@interface Post : AbstractPost
///-------------------------------
/// @name Specific Post properties
///-------------------------------
@property (nonatomic, strong) Coordinate * geolocation;
@property (nonatomic, strong) NSString * tags;
@pr... |
/*
* arch-tag: Simple test for the RBEntryView widget
*
* Copyright (C) 2003 Colin Walters <walters@verbum.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of... |
#pragma once
#include <iosfwd>
#include <iostream>
namespace helpers {
namespace syntax {
/// in-class initializable object
template <typename T, const T default_value = 0>
struct zero_inited {
zero_inited(const T& _ = default_value) : value(_) {}
operator T& () { return value; }
o... |
//
// SAToDoTableViewCell.h
// SelfAgile
//
// Created by chen Yuheng on 15/6/9.
// Copyright (c) 2015年 chen Yuheng. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface SAToDoTableViewCell : UITableViewCell
@property (nonatomic,strong) NSDictionary *event;
@end
|
/*
* ircd-ratbox: A slightly useful ircd.
* m_oquit.c: Allows an oper to quit from IRC with no quit prefix.
*
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
* Copyright (C) 1996-2002 Hybrid Development Team
* Copyright (C) 2002-2005 ircd-ratbox development team
*
* This program is... |
#ifndef __TOMTOM_MEM_H__
#define __TOMTOM_MEM_H__
struct ttmem_info {
void (* allow)(void);
void (* disallow)(void);
};
#endif /* __TOMTOM_MEM_H__ */
|
/*
Copyright (c) 1999 XFree86 Inc
*/
/* $XFree86: xc/include/extensions/xf86dga.h,v 3.20 1999/10/13 04:20:48 dawes Exp $ */
#ifndef _XF86DGA_H_
#define _XF86DGA_H_
#include <nx-X11/Xfuncproto.h>
#include <nx-X11/extensions/xf86dga1.h>
#define X_XDGAQueryVersion 0
/* 1 through 9 are in xf86dga1.h */
/* 10 and ... |
/*
* QEMU GMCH/ICH9 LPC PM Emulation
*
* Copyright (c) 2009 Isaku Yamahata <yamahata at valinux co jp>
* VA Linux Systems Japan K.K.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the F... |
#ifndef __NETNS_CONNTRACK_H
#define __NETNS_CONNTRACK_H
#include <linux/list.h>
#include <linux/list_nulls.h>
#include <linux/atomic.h>
#include <linux/netfilter/nf_conntrack_tcp.h>
struct ctl_table_header;
struct nf_conntrack_ecache;
struct nf_proto_net {
#ifdef CONFIG_SYSCTL
struct ctl_table_header *ctl_table_hea... |
/*
* Copyright(C) 2011-2012 Alibaba Group Holding Limited
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <easy_time.h>
#include <sys/time.h>
/**
* localtime删除tzset,... |
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// Copyright(C) 2005 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free So... |
/*
* File: queue.c
* -------------
* This file implements the queue.h abstraction using an array.
*/
#include <stdio.h>
#include "genlib.h"
#include "queue.h"
/*
* Constants:
* ----------
* MaxQueueSize -- Maximum number of elements in the queue
*/
#define MaxQueueSize 10
/*
* Type: queueCDT
* ----------... |
/*
* Copyright (c) 2006 Steven Dake (sdake@mvista.com)
* Copyright (c) 2006 Sun Microsystems, Inc.
*
* This software licensed under BSD license, the text of which follows:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions ... |
/**
* (c) 2015 Alexandro Sanchez Bach. All rights reserved.
* Released under GPL v2 license. Read LICENSE for more details.
*/
#pragma once
#include "nucleus/common.h"
#include "nucleus/cpu/frontend/frontend_function.h"
#include <map>
namespace cpu {
namespace frontend {
// Class declarations
template <typename... |
/*
* Copyright (C) 1996-2022 The Squid Software Foundation and contributors
*
* Squid software is distributed under GPLv2+ license and includes
* contributions from numerous individuals and organizations.
* Please see the COPYING and CONTRIBUTORS files for details.
*/
#ifndef _SQUID_SRC_AUTH_BASIC_USERREQUEST_H
... |
/*+M*************************************************************************
* Adaptec AIC7xxx device driver for Linux.
*
* Copyright (c) 1994 John Aycock
* The University of Calgary Department of Computer Science.
*
* This program is free software; you can redistribute it and/or modify
* it under the ... |
// Animation names
#define SHELLS_ANIM_DEFAULT_ANIMATION 0
// Color names
// Patch names
// Names of collision boxes
#define SHELLS_COLLISION_BOX_DEFAULT 0
// Attaching position names
// Sound names
|
/*
* omap-aess -- OMAP4 ABE DSP
*
* Author: Liam Girdwood <lrg@slimlogic.co.uk>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef _OMAP4_ABE_DSP_H
#define _OMAP4_... |
/*
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
*
* Copyright (C) 2008-2009 Trinity <http://www.trinitycore.org/>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers... |
#ifndef UTILITY_H
#define UTILITY_H
/*
* assumes the memory manager is libmm.a
* - allows malloc(0) or realloc(obj, 0)
* - catches out of memory (and calls MMout_of_memory())
* - catch free(0) and realloc(0, size) in the macros
*/
#define NIL(type) ((type *) 0)
#ifdef BWGC
#define ALLOC(type, num) \
((typ... |
/*
* Copyright (C) 2004-2016 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditi... |
#ifndef CHARSET_H
#define CHARSET_H
int init_charset(char *name);
char *utf2ascii(char *src, char *dest, int size);
char *ascii2utf(char *src, char *dest, int size);
#endif
|
/*
* This file is part of the UCB release of Plan 9. It is subject to the license
* terms in the LICENSE file found in the top-level directory of this
* distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
* part of the UCB release of Plan 9, including this file, may be copied,
* modified, pro... |
//
// SingleLabelCenterCell.h
// OpenPKW
//
// Created by Lukasz Stocki on 16.05.2015.
// Copyright (c) 2015 OpenPKW. All rights reserved.
//
#import "BaseCell.h"
@interface SingleLabelCenterCell : BaseCell
@property (weak, nonatomic) IBOutlet UILabel *label;
@end
|
//
// PhotoBrowserProtocol.h
// CERN
//
// Created by Timur Pocheptsov on 2/12/13.
// Copyright (c) 2013 CERN. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol MWPhoto;
@protocol PhotoBrowserProtocol <NSObject>
- (UIImage *) imageForPhoto : (id<MWPhoto>) photo;
- (void) cancelControlHiding;
-... |
/*!
* \file interfaceUdp.h
* \author SBG Systems (Raphael Siryani)
* \date 05 February 2013
*
* \brief This file implements an UDP interface.
*
* \section CodeCopyright Copyright Notice
* Copyright (C) 2007-2013, SBG Systems SAS. All rights reserved.
*
* This source code is intended for use o... |
/*
* DES & Triple DES EDE Cipher Algorithms.
*/
#ifndef __CRYPTO_DES_H
#define __CRYPTO_DES_H
#define DES_KEY_SIZE 8
#define DES_EXPKEY_WORDS 32
#define DES_BLOCK_SIZE 8
#define DES3_EDE_KEY_SIZE (3 * DES_KEY_SIZE)
#define DES3_EDE_EXPKEY_WORDS (3 * DES_EXPKEY_WORDS)
#define DES3_EDE_BLOCK_SIZE DES_BLOCK_SIZE
... |
#ifndef INTL_H
#define INTL_H
#include <glib.h>
#ifdef ENABLE_NLS
# include <glib/gi18n.h>
#else /* NLS is disabled */
# define _(String) (String)
# define N_(String) (String)
# define NC_(Context, String) (String)
# define gettext(String) (String)
# define textdomain(Domain)
# define bindtextdomain(Package, D... |
#pragma once
/*
* Copyright (C) 2010-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later ver... |
/*
* IPSEC tunneling code
* Copyright (C) 1996, 1997 John Ioannidis.
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Richard Guy Briggs.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Founda... |
/*
* Copyright (C) 2011 Infineon Technologies
*
* Authors:
* Peter Huewe <huewe.external@infineon.com>
*
* Version: 2.1.1
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Genera... |
/***************************************************************************
qgsrelationreferencewidgetwrapper.h
--------------------------------------
Date : 20.4.2013
Copyright : (C) 2013 Matthias Kuhn
Email : matthias at opengis dot ch
*****************... |
#ifndef __ALGORITHM_BORDER_RESAMPLE_H__
#define __ALGORITHM_BORDER_RESAMPLE_H__
/*LICENSE_START*/
/*
* Copyright (C) 2014 Washington University School of Medicine
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* ... |
/*
* Copyright (C) 2005-2012 MaNGOS <http://getmangos.com/>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
... |
/*
* Copyright (C) ST-Ericsson SA 2010-2011
*
* License Terms: GNU General Public License v2
*
* Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson
*
*/
#ifndef UX500_SUSPEND_DBG_H
#define UX500_SUSPEND_DBG_H
#include <linux/kernel.h>
#include <linux/suspend.h>
#ifdef CONFIG_UX500_SUSPEND_DBG_W... |
#include "templateviewgrid.h"
#include "../config.h"
#include "../libcore/helpers.h"
cTemplateViewGrid::cTemplateViewGrid(void) : cTemplateViewElement() {
}
cTemplateViewGrid::~cTemplateViewGrid(void) {
}
bool cTemplateViewGrid::CalculatePixmapParameters(void) {
bool paramsValid = true;
int gridX... |
/*
* Copyright 2002, 2009 Seanodes Ltd http://www.seanodes.com. All rights
* reserved and protected by French, UK, U.S. and other countries' copyright laws.
* This file is part of Exanodes project and is subject to the terms
* and conditions defined in the LICENSE file which is present in the root
* directory of t... |
/*
-----------------------------------------------------------------------------
$Id: pal_syslog.h,v 1.1 2009/11/20 16:38:53 jasminko Exp $
-----------------------------------------------------------------------------
Copyright (c) 2007 gogo6 Inc. All rights reserved.
For license information refer to CLIENT-LICENSE... |
/*
* Memory allocation unit
*
* $Id: mem.h,v 1.1.1.1 2003/08/18 05:39:50 kaohj Exp $
*
*/
#ifndef LANE_MEM_H
#define LANE_MEM_H
/* System includes needed for types */
#include "sys/types.h"
/* Local includes needed for types */
#include "units.h"
/* Type definitions */
/* Global function prototypes */
void *m... |
/** ===========================================================
* @file
*
* This file is a part of KDE project
* <a href="https://projects.kde.org/projects/extragear/libs/libmediawiki">libmediawiki</a>
*
* @date 2011-03-22
* @brief a MediaWiki C++ interface for KDE
*
* @author Copyright (C) 2011-2013 by Gil... |
/**
* @file notification.h generic notification interface
*
* Copyright (C) 2006 Norman Jonas <liferea.sf.net@devport.codepilot.net>
* Copyright (C) 2006-2008 Lars Lindner <lars.lindner@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General P... |
/*
* render1x1ntsc.h - Implementation of framebuffer to physical screen copy
*
* Written by
* groepaz <groepaz@gmx.net> based on the pal renderers written by
* John Selck <graham@cruise.de>
* Andreas Boose <viceteam@t-online.de>
*
* This file is part of VICE, the Versatile Commodore Emulator.
* See README f... |
/*
* This file is part of the UCB release of Plan 9. It is subject to the license
* terms in the LICENSE file found in the top-level directory of this
* distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
* part of the UCB release of Plan 9, including this file, may be copied,
* modified, pro... |
/* -*- mode: c++; indent-tabs-mode: nil -*- */
/*
Sequence.h
Qore Programming Language
Copyright (C) 2003 - 2015 David Nichols
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 witho... |
/* The Butterfly Effect
* This file copyright (C) 2010,2012 Klaas van Gend
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation
* applicable version is GPL version 2 only.
* This program is... |
#ifndef MATERIAL_H
#define MATERIAL_H
#include "../lib/rand48/erand48.h"
#include "vector.h"
#include "ray.h"
#include "texture.h"
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
enum MaterialType { DIFF, SPEC, EMIT };
class Material {
private:
MaterialType m_type;
Vec m_colour;
Vec m_emission;
Tex... |
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include "VideoBackends/D3D/tiny_obj_loader.h"
#include "VideoCommon/VideoCommon.h"
#include "VideoCommon/VR.h"
struct ID3D11Texture2D;
struct ID3D11Buffer;
struct ID3D11VertexShader;
struct ID... |
/*
* Serial Device Initialisation for Lasi/Asp/Wax/Dino
*
* (c) Copyright Matthew Wilcox <willy@debian.org> 2001-2002
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either ... |
#ifndef USER_MACROS_H
#define USER_MACROS_H
/*generated by SCADE Code Generator*/
#include "libraries/libmathext/macro_libmathext.h"
#include "libraries/libsmlk/macro_libsmlk.h"
#endif /*USER_MACROS_H*/
|
/* Extended Module Player
* Copyright (C) 1996-2000 Claudio Matsuoka and Hipolito Carraro Jr
*
* This file is part of the Extended Module Player and is distributed
* under the terms of the GNU General Public License. See doc/COPYING
* for more information.
*
* $Id: sgi.c,v 1.8 2007/10/22 10:13:49 cmatsuoka Exp $... |
/**
******************************************************************************
* @file bsp_SysTick.c
* @author fire
* @version V1.0
* @date 2013-xx-xx
* @brief SysTick ϵͳµÎ´ðʱÖÓ10usÖжϺ¯Êý¿â,ÖжÏʱ¼ä¿É×ÔÓÉÅäÖã¬
* ³£ÓõÄÓÐ 1us 10us 1ms Öжϡ£
**********************... |
#include <stdio.h>
#include <mpi.h>
#include <unistd.h>
#include "e-hal.h"
#include "e-loader.h"
int main(int argc, char *argv[]) {
MPI_Init(&argc, &argv);
int rank;
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
e_init(NULL);
int primary = !(rank % 2);
int tmp = 0;
int tag = 0;
if (primary) {
e_reset_sys... |
#include "../../dist/include/sound/hda_register.h"
|
/*
Copyright (C) 2000 The Exult Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope t... |
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2011 Advanced Micro Devices, Inc.
* Copyright (C) 2014 Sage Electronic Engineering, LLC.
* Copyright (C) 2014 Edward O'Callaghan <eocallaghan@alterapraxis.com>
*
* This program is free software; you can redistribute it and/or modify
* it under th... |
#include <linux/smp.h>
#include <linux/timex.h>
#include <linux/string.h>
#include <linux/seq_file.h>
#include <linux/cpufreq.h>
/*
* Get CPU information for use by the procfs.
*/
static void show_cpuinfo_core(struct seq_file *m, struct cpuinfo_x86 *c,
unsigned int cpu)
{
#ifdef CONFIG_SMP
if (c->x86_max_c... |
/*
* Author: MontaVista Software, Inc. <source@mvista.com>
*
* 2007 (c) MontaVista Software, Inc. This file is licensed under
* the terms of the GNU General Public License version 2. This program
* is licensed "as is" without any warranty of any kind, whether express
* or implied.
*/
#include <linux/init.h>
#inc... |
/* Copyright 2001 Rien Croonenborghs, Ben Kibbey, Shaun Jackman, Ivan Brozovic
This file is part of lcab.
lcab is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
... |
/***************************************************************************
* Copyright (C) 2007-2009 by Elad Lahav
* elad_lahav@users.sourceforge.net
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Fr... |
/*
* tablemodel.h
*
* Copyright (C) 2011 Christoph Pfister <christophpfister@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your o... |
#ifndef RENDERER_H_
#define RENDERER_H_
#include "system-gl.h"
#include "linalg.h"
#ifdef _MSC_VER // NULL
#include <cstdlib>
#endif
class Renderer
{
public:
virtual ~Renderer() {}
virtual void draw(bool showfaces, bool showedges) const = 0;
enum ColorMode {
COLORMODE_NONE,
COLORMODE_MATERIAL,
COLORMODE_CU... |
// This may look like C code, but it's really -*- C++ -*-
/*
* Copyright (C) 2009 Emweb bv, Herent, Belgium.
*
* See the LICENSE file for terms of use.
*/
#ifndef BLOG_LOGIN_WIDGET_H_
#define BLOG_LOGIN_WIDGET_H_
#include <Wt/Auth/AuthWidget.h>
#include <Wt/Auth/RegistrationModel.h>
class BlogSession;
/*
* Disp... |
/*
* CDE - Common Desktop Environment
*
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; ei... |
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_RANGEFUNC_STRINGS_H_
# define _GNM_RANGEFUNC_STRINGS_H_
#include "numbers.h"
G_BEGIN_DECLS
int range_concatenate (GPtrArray *data, char **res);
G_END_DECLS
#endif /* _GNM_RANGEFUNC_STRINGS_H_ */
|
/*
* Copyright (C) 2014-2015 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* ... |
/*
* Copyright (c) 2003-2004 MontaVista Software, Inc.
*
* All rights reserved.
*
* Author: Steven Dake (sdake@mvista.com)
*
* This software licensed under BSD license, the text of which follows:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided tha... |
/*
* Copyright (c) 2007 Boudewijn Rempt boud@valdyas.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*... |
/*
* JMWin / JMPocket - JuggleMaster for Windows and Pocket PC
* Version 1.1
* (C) Per Johan Groland 2002-2008
*
* Using JMLib 2.0(C) Per Johan Groland 2000-2006, Gary Briggs 2003
* Based on JuggleMaster Version 1.60
* Copyright (C) 1995-1996 Ken Matsuoka
*
* JMPocket is free software; you can redistr... |
/*
* Emulation of Allwinner EMAC Fast Ethernet controller and
* Realtek RTL8201CP PHY
*
* Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
*
* Allwinner EMAC register definitions from Linux kernel are:
* Copyright 2012 Stefan Roese <sr@denx.de>
* Copyright 2013 Maxime Ripard <maxime.ripard@free-el... |
/* SPDX-License-Identifier: Intel */
/*
* Copyright (C) 2013, Intel Corporation
* Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
*/
#ifndef _FSP_HEADER_H_
#define _FSP_HEADER_H_
#define FSP_HEADER_OFF 0x94 /* Fixed FSP header offset in the FSP image */
struct __packed fsp_header {
u32 sign; /* 'FSPH' */
u3... |
/*
* binfmt_elf32.c: Support 32-bit Sparc ELF binaries on Ultra.
*
* Copyright (C) 1995, 1996, 1997, 1998 David S. Miller (davem@dm.cobaltmicro.com)
* Copyright (C) 1995, 1996, 1997, 1998 Jakub Jelinek (jj@ultra.linux.cz)
*/
#define ELF_ARCH EM_SPARC
#define ELF_CLASS ELFCLASS32
#define ELF_DATA ELFDATA2MSB;
... |
/*
* ui_overlay.c -- help and status display for hnb
*
* Copyright (C) 2001-2003 Øyvind Kolås <pippin@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either versi... |
/****************************************************************************
**
** Copyright (C) 2018 Sergey Morozov
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with t... |
/*
** Taiga
** Copyright (C) 2010-2014, Eren Okka
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** This pr... |
/*
Copyright 2005-2010 Jakub Kruszona-Zawadzki, Gemius SA, 2013-2014 EditShare, 2013-2015 Skytechnology sp. z o.o..
This file was part of MooseFS and is part of LizardFS.
LizardFS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
... |
/*
* Copyright (C) 2006-2016 Christopho, Solarus - http://www.solarus-games.org
*
* Solarus is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... |
//
// SelectBarCell.h
// Groove
//
// Created by C-ty on 2014/11/16.
// Copyright (c) 2014年 Cty. All rights reserved.
//
#import "XibViewInterface.h"
@class SelectBarCell;
@protocol SelectBarCellProtocol <NSObject>
@required
@optional
- (void) CellLongPress: (SelectBarCell *) ThisCell;
- (void) CellShortPress:... |
/*--------------------------------------------------------------------
(C) Copyright 2006-2013 Barcelona Supercomputing Center
Centro Nacional de Supercomputacion
This file is part of Mercurium C/C++ source-to-source compiler.
See AUTHORS file in the top level directory for informa... |
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be usefu... |
/* Copyright 1997,2000-2002,2009,2011 Alain Knaff.
* This file is part of mtools.
*
* Mtools is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) a... |
/****************************************************************************
**
** Copyright (C) 2019 Sergey Morozov
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with t... |
/**
This file is part of martink project.
martink firmware project is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
martink firmware i... |
/*
extr: Extract attachments from PDF file
Usage: extr /dir/file.pdf pageno
Returns 0 if one or more attachments saved, otherwise returns non-zero.
Prints the number of saved attachments on stdout.
Attachments are saved in /dir directory with the appropriate filenames.
Copyright (C) 2012 Tigran Aivazian <tigran... |
#ifndef __ATTACK_TYPE_H__
#define __ATTACK_TYPE_H__
#include <Arduino.h>
class AttackType {
private:
String id;
String name;
String createdAt;
String updatedAt;
void init(char* json);
public:
AttackType();
AttackType(const char* id, const char* name, const char* createdAt, const char* updat... |
/*
* Copyright (C) 2011-2019 Project SkyFire <http://www.projectskyfire.org/>
* Copyright (C) 2008-2019 TrinityCore <http://www.trinitycore.org/>
* Copyright (C) 2005-2019 MaNGOS <https://getmangos.com/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Gener... |
//
// BAGEL - Brilliantly Advanced General Electronic Structure Library
// Filename: qvec.h
// Copyright (C) 2012 Toru Shiozaki
//
// Author: Toru Shiozaki <shiozaki@northwestern.edu>
// Maintainer: Shiozaki group
//
// This file is part of the BAGEL package.
//
// This program is free software: you can redistribute it... |
/****************************************************************\
* *
* Library for manipulation of exonerate index files *
* *
* Guy St.C. Slater.. mailto:guy@ebi.ac.uk ... |
/*
This file is part of Mitsuba, a physically based rendering system.
Copyright (c) 2007-2014 by Wenzel Jakob and others.
Mitsuba is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License Version 3
as published by the Free Software Foundation.
... |
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance w... |
/***************************************************************************************************
ExploreEmbedded
****************************************************************************************************
* File: uart.h
* Version: 15.0
* Author: ExploreEmbedded
* W... |
/*
* This file is part of MPlayer.
*
* MPlayer is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* MPlayer is distributed in th... |
/////////////////////////////////////////////////////////////////////////////
/// @file CnCurve.h
///
/// @author Daniel Wilczak
/////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2000-2012 by the CAPD Group.
//
// This file constitutes a part of the CAPD library,
// distrib... |
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2016 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ati... |
#ifndef ZPM_VERSION
#define ZPM_VERSION "0.1.0"
#endif
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.