text stringlengths 4 6.14k |
|---|
//
// ZJDHttpRequest.h
// AppleRssDemo1
//
// Created by qianfeng on 15/3/24.
// Copyright (c) 2015年 ZJD. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ZJDHttpRequest : NSObject
@property (nonatomic, assign)id delegate;
@property (nonatomic, assign)SEL action;
@property (nonatomic, copy)NS... |
#ifndef COMPLETERPROJECT_H
#define COMPLETERPROJECT_H
#include <QCompleter>
#include "projectproxymodel.h"
class ProjectCompleter : public QCompleter
{
public:
explicit ProjectCompleter(ProjectProxyModel*, QObject* parent);
QString pathFromIndex ( const QModelIndex & index ) const;
QStringList splitPath (... |
/*
* i2c.h
*
* Created on: Jul 8, 2013
* Original author: mike
*
* Customized on Jul 2, 2014
* Secondary author: JavierIH
*
*/
#ifndef I2C_H_
#define I2C_H_
#include "../debug/debug.h"
#include <linux/i2c-dev.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h> // open();
#include <unistd.h> // c... |
/*
* linux/mm/page_io.c
*
* Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
*
* Swap reorganised 29.12.95,
* Asynchronous swapping added 30.12.95. Stephen Tweedie
* Removed race in async swapping. 14.4.1996. Bruno Haible
* Add swap of shared pages through the page cache. 20.2.1998. Stephen Tweedie
... |
void c_window();
void snake(int);
void reset(){
int speed,l;
char ch2;
clrscr();
gotoxy(15,23);
textcolor(BLUE);
//cprintf("PRESS 's'AND 'w' TO NAVIGATE AND 'e' TO SELECT");
gotoxy(15,12);
textcolor(WHITE);
cprintf("SPEED LEVEL");
while(1){
gotoxy(27,12);
textcolor(GREEN);
cprintf("%d",l);
ch2=g... |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_DELEGATE_H_
#define CHROME_BROWSER_UI_EXTENSIONS_EXTENSION_ENABLE_FLOW_DELEGATE_H_
class E... |
#ifndef _GAMELOOP_H
#define _GAMELOOP_H
#include "ios_fc.h"
#include "drawcontext.h"
#include "audiomanager.h"
#include "GameControls.h"
using namespace ios_fc;
class GameLoop;
class DrawableComponent
{
public:
DrawableComponent();
virtual ~DrawableComponent();
virtual bool drawRequested() const;
... |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SYSTEM_IME_IME_OBSERVER_H_
#define ASH_SYSTEM_IME_IME_OBSERVER_H_
namespace ash {
class IMEObserver {
public:
virtual ~IMEObserver() ... |
/*
*** ColourScalePoint Variable and Array
*** src/parser/colourscalepoint.h
Copyright T. Youngs 2007-2016
This file is part of Aten.
Aten 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 ... |
/*
Test that the function:
int sigaddset(sigset_t *, int);
is declared.
*/
#include <signal.h>
typedef int (*sigaddset_test)(sigset_t *, int);
int dummyfcn (void)
{
sigaddset_test dummyvar;
dummyvar = sigaddset;
return 0;
} |
/*
* %kadu copyright begin%
* Copyright 2012 Bartosz Brachaczek (b.brachaczek@gmail.com)
* Copyright 2011, 2012, 2013, 2014 Rafał Przemysław Malinowski (rafal.przemyslaw.malinowski@gmail.com)
* %kadu copyright end%
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of t... |
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void *count();
pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
int counter = 0;
int main()
{
int rc1, rc2;
pthread_t thread1, thread2;
if ((rc1 = pthread_create(&thread1, NULL, &count, NULL)))
{
printf("Thread creation failed: %d... |
#include <stdio.h>
#include <stdlib.h>
#include <png.h>
#include <zbar.h>
#include "get_data.h"
#if !defined(PNG_LIBPNG_VER) || \
PNG_LIBPNG_VER < 10018 || \
(PNG_LIBPNG_VER > 10200 && \
PNG_LIBPNG_VER < 10209)
/* Changes to Libpng from version 1.2.42 to 1.4.0 (January 4, 2010)
* ...
* 2. m. Th... |
#ifndef STATUS_H
#define STATUS_H
#include <stdio.h>
#include "string-list.h"
#include "color.h"
enum color_wt_status {
WT_STATUS_HEADER = 0,
WT_STATUS_UPDATED,
WT_STATUS_CHANGED,
WT_STATUS_UNTRACKED,
WT_STATUS_NOBRANCH,
WT_STATUS_UNMERGED,
};
enum untracked_status_type {
SHOW_NO_UNTRACKED_FILES,
SHOW_NORMAL... |
// Animation names
#define TURRET_ANIM_DEFAULT 0
// Color names
// Patch names
// Names of collision boxes
#define TURRET_COLLISION_BOX_DEFAULT 0
// Attaching position names
#define TURRET_ATTACHMENT_ROTATORHEADING 0
// Sound names
|
/* Copyright (C) 1991, 92, 96, 97, 98, 99, 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C 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 Free Software Foundation; either
... |
/* main-grain-test.c */
/*
This file is part of the AVR-Crypto-Lib.
Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de)
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 ver... |
#ifndef __W1_H
#define __W1_H
struct w1_reg_num
{
#if defined(__LITTLE_ENDIAN_BITFIELD)
__u64 family:8,
id:48,
crc:8;
#elif defined(__BIG_ENDIAN_BITFIELD)
__u64 crc:8,
id:48,
family:8;
#else
#error "Please fix <asm/byteorder.h>"
#endif
};
#ifdef __KERNEL__
#include <linux/completion.h>
#include <linux/de... |
#ifndef LOTOSPP_NETWORK_SERVICEPORT_H
#define LOTOSPP_NETWORK_SERVICEPORT_H
#include <boost/enable_shared_from_this.hpp>
#include <boost/core/noncopyable.hpp>
#include <boost/asio/ip/tcp.hpp>
#include <boost/asio/io_service.hpp>
namespace LotosPP::Network {
class Protocol;
class NetworkMessage;
class ServiceBase;... |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cryptopals/core.h>
#include <cryptopals/set1.h>
#include <cryptopals/set3.h>
void bigint_inc(unsigned char *x, size_t len, bool big_endian)
{
int direction = big_endian ? -1 : 1;
unsigned char *p = big_endian ? x + len - 1 : x;
unsigned int i;
... |
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of ... |
/***********************************************************************************
* *
* Voreen - The Volume Rendering Engine *
* ... |
/**
* @file
*
* @brief Mutex Timed Lock
* @ingroup POSIXAPI
*/
/*
* COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.org/license/LICENSE.
*/
... |
// -*- C++ -*-
/*!
\file geom/defs.h
\brief Definitions for the computational geometry package.
*/
#if !defined(__geom_defs_h__)
//! Include guard.
#define __geom_defs_h__
// If we are debugging everything in STLib.
#if defined(DEBUG_stlib) && !defined(DEBUG_geom)
#define DEBUG_geom
#endif
//! Begin the geom n... |
/*
* Generated by MTK SP DrvGen Version 03.13.6 for MT6572_NP. Copyright MediaTek Inc. (C) 2013.
* Sat May 10 18:56:22 2014
* Do Not Modify the File.
*/
#ifndef __CUST_AUXADC_TOOL_H
#define __CUST_AUXADC_TOOL_H
#define AUXADC_USB_ID_CHANNEL 0
#define AUXADC_PCB_REV_CHANNEL 1
#endif //_CUST_AUXADC_TOOL_... |
/***************************************************************************
* *
* (c) Art Tevs, MPI Informatik Saarbruecken *
* mailto: <tevs@mpi-sb.mpg.de> *
* ... |
/* GStreamer
* Copyright (C) <2002> David A. Schleef <ds@schleef.org>
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; e... |
// XGetopt.h Version 1.2
//
// Author: Hans Dietrich
// hdietrich2@hotmail.com
//
// This software is released into the public domain.
// You are free to use it in any way you like.
//
// This software is provided "as is" with no expressed
// or implied warranty. I accept no liability for any
// d... |
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtOpenGL module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
... |
/***************************************************************************
* Copyright (C) 2010, 2011 by EP Studios, Inc. *
* mannd@epstudiossoftware.com *
* *
* This pr... |
// Copyright 2010 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <memory>
#include <string>
#include "Common/MathUtil.h"
#include "VideoBackends/D3D12/D3DBase.h"
#include "VideoBackends/D3D12/D3DState.h"
#include "VideoBackends/D3D12/D3DStreamBuffer... |
#include <linux/bio.h>
int main(void)
{
struct bio *bio = NULL;
struct bio_set *bio_set = NULL;
bio_free(bio, bio_set);
return 0;
}
|
/*******************************************************************************
* Filename: target_core_hba.c
*
* This file copntains the iSCSI HBA Transport related functions.
*
* Copyright (c) 2003, 2004, 2005 PyX Technologies, Inc.
* Copyright (c) 2005, 2006, 2007 SBE, Inc.
* Copyright (c) 2007-2009 Rising ... |
/*
* \brief Root component of an emulated IO_MEM service
* \author Martin Stein
* \date 2012-06-11
*/
/*
* Copyright (C) 2012 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _INCLUDE__IO_MEM_S... |
/** \file Parse.h - parse a string
**
** Written: 1999-Feb-10 grymse@alhem.net
**/
/*
Copyright (C) 1999-2008 Anders Hedstrom
This library is made available under the terms of the GNU GPL.
If you would like to use this library in a closed-source application,
a separate license agreement is available. For informa... |
/* Copyright (C) 2015 DiUS Computing Pty. Ltd.
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.
*/
#ifndef _PDI_H_
... |
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2013 Google, Inc.
*
* 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; version 2 of the License.
*
* This program is distr... |
#ifndef CPC_PROT_H
#define CPC_PROT_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#ifndef WIN32
#include <netinet/in.h>
#endif
#define CPC_TYPE_NS 1
#define CPC_TYPE_LINUX 2
#define CPC_TYPE_WIN 3
#include "cpc_defs.h"
struct cpc_prot {
int type;
int len;
void *data;
};
#define NS_PROT_SIZE (sizeo... |
/**
* @file cp_mission_terror.h
* @brief Campaign mission headers
*/
/*
Copyright (C) 2002-2011 UFO: Alien Invasion.
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 Licens... |
/*
* Copyright (c) 1991 Stanford University
* Copyright (c) 1991 Silicon Graphics, Inc.
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee, provided
* that (i) the above copyright notices and this permission notice appear ... |
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "stringmanager.h"
namespace Ui {
class MainWindow;
}
class KeyLineEdit;
class StringManager;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
protected:
// ove... |
// SWAG protocol device library
// if you like this project, please add a start :)
#include "include/Swag.h"
|
#ifndef DEBUG_H
#define DEBUG_H
// Enable/disable debug output globally
#define DEBUG 1
#ifdef __cplusplus
# include <QString>
# include <iostream>
/**
* Operator that writes a QString to a std::ostream
* @param out output stream to write into
* @param s the QString to be written
* @return the output stream wit... |
/***************************************************************************
CUser.h
(c) 2000-2013 Benoît Minisini <gambas@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 Found... |
/*
This file is a part of ORCOM software distributed under GNU GPL 2 licence.
Homepage: http://sun.aei.polsl.pl/orcom
Github: http://github.com/lrog/orcom
Authors: Sebastian Deorowicz, Szymon Grabowski and Lucas Roguski
*/
#ifndef H_DNARCHFILE
#define H_DNARCHFILE
#include "../orcom_bin/Globals.h"
#include ... |
/* A Bison parser, made by GNU Bison 2.5. */
/* Bison interface for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published ... |
#ifndef md_pcap_adapter_h
#define md_pcap_adapter_h
#include <linux/if_ether.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
#include <netinet/udp.h>
#include <pcap/bpf.h>
#include <pcap/pcap.h>
#include <pcap/sll.h>
#include <sys/types.h>
#include <cstdbool>
#include <cstdint>
#include... |
#include <linux/unistd.h>
#include <sys/syscall.h>
#include <unistd.h>
#include <linux/record.h>
long start_rec(struct recording *rec){
return syscall(__NR_start_rec, 0, rec);
}
long start_rep(struct recording *rec){
return syscall(__NR_start_rec, 1, rec);
}
long stop_rec(void){
return syscall(__NR_stop_rec);
}
/... |
/* ev-previewer-window.h:
* this file is part of evince, a gnome document viewer
*
* Copyright (C) 2009 Carlos Garcia Campos <carlosgc@gnome.org>
*
* Evince 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 Foundat... |
/*
* GetProcNetDev.h
*
* Created on: Jul 3, 2011
* Author: cadm
*/
#ifndef GETPROCNETDEV_H_
#define GETPROCNETDEV_H_
#include "../Statistics/NetStatistics.h"
#include "GetDataCommon.h"
int InterpretNetLine(struct NetStatistics *pNetStatsStruct, char *szLine);
int GetProcNetDev(struct NetInformationStruct... |
#ifndef MENU_STATE_H
#define MENU_STATE_H
#include "gameestate.h"
#include "gameobject.h"
#include "mouseclick.h"
#include "menubutton.h"
#include <vector>
class MenuState : public GameState, MouseClick::MouseClickListener{
public:
virtual void update();
virtual void render();
virtual bool onEnter();
virtual b... |
/*
* host bridge related code
*/
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/module.h>
#include "pci.h"
static struct pci_bus *find_pci_root_bus(struct pci_dev *dev)
{
struct pci_bus *bus;
bus = dev->bus;
while (bus->parent)
bus = bus->parent;
return bus;
}
sta... |
/*
* DaVinci serial device definitions
*
* Author: Kevin Hilman, 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 e... |
/***************************************************************************
text_box_help.h - description
-------------------
begin : Tue Mar 2 2004
copyright : (C) 2004 by David Rokhvarg
email : davidr@sangom... |
/*
* Based on arch/arm/include/asm/pgalloc.h
*
* Copyright (C) 2000-2001 Russell King
* Copyright (C) 2012 ARM Ltd.
*
* 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.
*
* This... |
# ifndef F_ERC_H
# define F_ERC_H
# include <assert.h>
# include "eref.h"
/*@-exporttype@*/ /* These types should not be exported, but are used in macros. */
typedef struct s_elem { eref val; /*@null@*/ struct s_elem *next; } ercElem;
typedef ercElem *ercList;
typedef struct { /*@null@*/ ercList vals; int size; } erc... |
// Copyright (C) 2017 Google Inc.
//
// 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 distribut... |
/*
* Copyright (C) 2010, 2011 Robert Lougher <rob@jamvm.org.uk>.
*
* This file is part of JamVM.
*
* 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)... |
#ifndef QEMU_CHAR_H
#define QEMU_CHAR_H
#include "qemu-common.h"
#include "qemu-queue.h"
#include "qemu-option.h"
#include "qemu-config.h"
#include "qobject.h"
/* character device */
#define CHR_EVENT_BREAK 0 /* serial break char */
#define CHR_EVENT_FOCUS 1 /* focus to this terminal (modal input needed) */
#def... |
#ifndef POLY_H
#define POLY_H
#include <QVector>
#include <QPoint>
#include <QColor>
class QPainter;
/** Althogh called 'poly', this class actually describes a triangle to be rendered into a scene */
class Poly
{
public:
friend QDataStream &operator << ( QDataStream &ds, const Poly &s );
friend Q... |
// e32tools\petran\Szip\huffman.h
//
// Copyright (c) 1998-2004 Symbian Software Ltd. All rights reserved.
//
#ifndef __HUFFMAN_H__
#define __HUFFMAN_H__
#include <e32std.h>
/** Bit output stream.
Good for writing bit streams for packed, compressed or huffman data algorithms.
This class must be derived... |
// **********************************************************************
//
// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// ***************************************************... |
/* Knuth shuffle ak.a. Fisher-Yates shuffle.
This implementation is due to Ben Pfaff:
http://benpfaff.org/writings/clc/shuffle.html.
Adapted for Linux/WMA11b by GJ06.
*/
#include <stdio.h>
#include <stdlib.h>
/* Arrange the N elements of ARRAY in random order.
Only effective if N is much smaller than RA... |
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Rosegarden
A MIDI and audio sequencer and musical notation editor.
Copyright 2000-2018 the Rosegarden development team.
Other copyrights also apply to some parts of this work. Please
see the AUTHORS file and individ... |
//
// AddressBookModel.h
// Meakelra
//
// Created by xiao_yu on 15/12/7.
// Copyright © 2015年 Meakelra. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface AddressBookModel : NSObject
@property (nonatomic, assign) NSInteger sectionNumber;
@property (nonatomic, assign) NSInteger recordID;
@prope... |
#ifndef _SPARC_BITEXT_H
#define _SPARC_BITEXT_H
#include <linux/spinlock.h>
struct bit_map {
spinlock_t lock;
unsigned long *map;
int size;
int used;
int last_off;
int last_size;
int first_free;
int num_colors;
};
extern int bit_map_string_get(struct bit_map *t, int len, int align);
extern void bit_map_cle... |
#ifndef ARCH_I386_SCHEDULER_H
# define ARCH_I386_SCHEDULER_H
# include <kernel/proc/thread.h>
# include <arch/cpu.h>
void i386_switch(struct irq_regs *regs, struct thread *new,
struct thread *old, spinlock_t *sched_lock);
#endif /* !ARCH_I386_SCHEDULER_H */
|
/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
*
* This 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.
*
* Thi... |
/*
* This file is part of the Popitam software
* Copyright (C) 2009 Swiss Institute of Bioinformatics
*
* 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
... |
extern void s3c2410_map_io(struct map_desc *, int count);
extern void s3c2410_init_irq(void);
|
#include <string.h>
#include "oslib/strlcat.h"
size_t strlcat(char *dst, const char *src, size_t size)
{
size_t dstlen;
size_t srclen;
dstlen = strlen(dst);
size -= dstlen + 1;
/* return if no room */
if (!size)
return dstlen;
srclen = strlen(src);
if (srclen > size)
srclen = size;
memcpy(dst + dstlen... |
#ifndef newNTL_mat_poly_ZZ_p__H
#define newNTL_mat_poly_ZZ_p__H
#include <newNTL/mat_ZZ_p.h>
#include <newNTL/ZZ_pX.h>
newNTL_OPEN_NNS
void CharPoly(ZZ_pX& f, const mat_ZZ_p& M);
newNTL_CLOSE_NNS
#endif
|
/**
* Copyright (C) 2005-2012 Gekko Emulator
*
* @file atomic_win32.h
* @author ShizZy <shizzy247@gmail.com>
* @date 2012-06-28
* @brief Cross-platform atomic operations - Windows/Visual C++
* @remark Taken from Dolphin Emulator (http://code.google.com/p/dolphin-emu/)
*
* @section LICENSE
* This pro... |
/*
* drivers/media/video/samsung/mfc40/s3c_mfc_fw.h
*
* Header file for Samsung MFC (Multi Function Codec - FIMV) driver
*
* PyoungJae Jung, Jiun Yu, Copyright (c) 2009 Samsung Electronics
* http://www.samsungsemi.com/
*
* This program is free software; you can redistribute it and/or modify
* it under the ter... |
#include <string>
using namespace std;
#ifndef __MONGO_METHOD_DATABASE_ELEMENT_H__
#define __MONGO_METHOD_DATABASE_ELEMENT_H__
class MongoMethodDatabaseElement
{
private:
string methodFullDesc;
int optLevel;
double counts;
public:
MongoMethodDatabaseElement (string _desc, int _optLevel, double _c... |
extern void ess_intr
(sb_devc *devc);
extern int ess_dsp_init
(sb_devc *devc, struct address_info *hw_config);
extern struct audio_driver *ess_audio_init
(sb_devc *devc, int *audio_flags, int *format_mask);
extern int ess_midi_init
(sb_devc *devc, struct address_info *hw_config);
extern void ess_mixer_init
... |
/* process.h
* - Processing chains
*
* $Id: process.h,v 1.3 2003/03/16 14:21:49 msmith Exp $
*
* Copyright (c) 2001-2002 Michael Smith <msmith@xiph.org>
*
* This program is distributed under the terms of the GNU General
* Public License, version 2. You may use, modify, and redistribute
* it under the terms of ... |
#pragma once
#include <string>
#include <vector>
#include "baserender.h"
#include "services/tvscraper.h"
class cMetrixHDDisplayMenu : public cMetrixHDBaseRender, public cSkinDisplayMenu {
private:
cPixmap *menuPixmap;
cPixmap *iconmenuPixmap;
cPixmap *logomenuPixmap;
cPixmap *s... |
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
// Modified for Ishiiruka by Tino
#pragma once
#include "VideoCommon/NativeVertexFormat.h"
class VertexLoader_Position
{
public:
// Init
static void Init(void);
// GetSize
static unsigned int GetSize(u3... |
/*
* Copyright (C) 2012 Google Inc. All rights reserved.
* Copyright (C) 2017 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 t... |
// callers.h
//
// Caller dialog for the Mithlond Project.
//
// (C) Copyright 2002 Fred Gleason <fredg@paravelsystems.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 ... |
/* arch/arm/plat-samsung/include/plat/pm.h
*
* Copyright (c) 2004 Simtec Electronics
* http://armlinux.simtec.co.uk/
* Written by Ben Dooks, <ben@simtec.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... |
/*
* Copyright 2007 Robert Schwebel <r.schwebel@pengutronix.de>, Pengutronix
* Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
* Copyright 2009 Daniel Schaeffer (daniel.schaeffer@timesys.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU ... |
/* Copyright (c) 2002-2012 Croteam Ltd.
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as published by
the Free Software Foundation
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without... |
/* $Id: fcntl.h 573 2006-02-20 17:09:11Z stsp2 $ */
#ifndef _SPARC64_FCNTL_H
#define _SPARC64_FCNTL_H
/* open/fcntl - O_SYNC is only implemented on blocks devices and on files
located on an ext2 file system */
#define O_NDELAY 0x0004
#define O_APPEND 0x0008
#define FASYNC 0x0040 /* fcntl, for BSD compatibility */
... |
// SPDX-License-Identifier: GPL-2.0
#ifndef PREF_H
#define PREF_H
#ifdef __cplusplus
extern "C" {
#endif
#include "units.h"
#include "taxonomy.h"
/* can't use 'bool' for the boolean values - different size in C and C++ */
typedef struct
{
short po2;
short pn2;
short phe;
double po2_threshold_min;
double po2_thr... |
/*************************************************
* gMystar.h
*
* Copyright (C) 2009 csip(amoblin@gmail.com)
*
* ChangeLog:
*
* Description:
* Warning: this file should be in UTF-8.
*
**************************************************/
#include "Mystar.h"
#include <gtkmm.h>
#include <libglademm.h>
#i... |
/*
* Copyright (C)2003,2004 USAGI/WIDE Project
*
* Header for use in defining a given L3 protocol for connection tracking.
*
* Author:
* Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
*
* Derived from include/netfilter_ipv4/ip_conntrack_protocol.h
*/
#ifndef _NF_CONNTRACK_L3PROTO_H
#define _NF_CONNT... |
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
// Originally written by Sven Peter <sven@fail0verflow.com> for anergistic.
#pragma once
#include <atomic>
namespace GDBStub {
/// Breakpoint Method
enum class BreakpointType {
None, ///< None
... |
/* $Id: namei.h,v 1.2 2000/08/25 20:26:28 hch Exp $
* linux/include/asm-i386/namei.h
*
* Included from linux/fs/namei.c
*/
#ifndef __I386_NAMEI_H
#define __I386_NAMEI_H
#include <linux/config.h>
/*
* The base directory for our emulations.
* - sparc uses usr/gmemul here.
*/
#define I386_EMUL_BASE "emul/"
/*... |
/* Copyright (C) 1998-2017 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C 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 Free Software Foundation; either
version 2.1 of the ... |
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkImageSobel3D.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
Th... |
/*
* csync2 - cluster synchronization tool, 2nd generation
* LINBIT Information Technologies GmbH <http://www.linbit.com>
* Copyright (C) 2004, 2005 Clifford Wolf <clifford@clifford.at>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Li... |
/*
* Copyright (c) 2012 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
* Obere Lagerstr. 30
* 82178 Puchheim
* Germany
* <rtems@embedded-brains.de>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.... |
/*
* Clutter.
*
* An OpenGL based 'interactive canvas' library.
*
* Copyright (C) 2011 Intel Corporation
*
* 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 Free Software Foundation; either
* version 2 of ... |
#include "config.h"
/* Generated from /home3/dni/haiyan.zhuang/r7800-test.git/build_dir/target-arm_v7-a_uClibc-0.9.33.2_eabi/samba-4.6.4/source4/heimdal/lib/wind/wind_err.et */
/* $Id$ */
#include <stddef.h>
#include <com_err.h>
#include "wind_err.h"
#define N_(x) (x)
static const char *wind_error_strings[] = {
/* ... |
/* created by click/linuxmodule/fixincludes.pl on Tue Nov 25 22:39:38 2014 */
/* from /lib/modules/2.6.27.5-117.fc10.i686/build/include/linux/user.h */
#if defined(__cplusplus) && !CLICK_CXX_PROTECTED
# error "missing #include <click/cxxprotect.h>"
#endif
#include <asm/user.h>
|
/*****
*
* Copyright (C) 2003-2012 CS-SI. All Rights Reserved.
* Author: Nicolas Delon <nicolas.delon@prelude-ids.com>
*
* This file is part of the Prelude library.
*
* 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 ... |
//
// C++ Interface: selection navigation dialog
//
// Description:
//
//
// Author: Vadim Lopatin <vadim.lopatin@coolreader.org>, (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
// bigfit.h
#ifndef BIGFIT_H_INCLUDED
#define BIGFIT_H_INCLUDED
#include "mainwnd.h"
/// window to show o... |
#define pr_fmt(fmt) "["KBUILD_MODNAME"] " fmt
#include <linux/module.h>
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/interrupt.h>
#include <linux/spinlock.h>
#include <linux/uaccess.h>
#include <linux/mm.h>
#include <linux/kfifo.h>
#include <linux/firmware.h>
#include <linux/... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.