text stringlengths 4 6.14k |
|---|
/************************************************************************
* Senior Design Project - PEOS Virtual Repository *
* Author : TASK4ONE *
* Filename : vrepo.h *
************************************************************************/
/*******************************************************... |
//
// BoxSDKTests.h
// BoxSDKTests
//
// Created on 2/19/13.
// Copyright (c) 2013 Box. All rights reserved.
//
#import <SenTestingKit/SenTestingKit.h>
@class BoxSDK;
@interface BoxSDKTests : SenTestCase
{
BoxSDK *SDK;
}
@end
|
#ifndef _MATCH_CSTRING_H
#define _MATCH_CSTRING_H
#include "ASTUtility.h"
namespace ProgrammingLanguage {
using namespace clang::ast_matchers;
//a means array, p means pointer
//match char*
extern DeclarationMatcher charPointerMatcherPL;
//match char[]
extern DeclarationMatcher charArrayMatc... |
//
// AppDelegate.h
// RESTEasy
//
// Created by Alex on 11/22/14.
// Copyright (c) 2014 Conditionally Convergent. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
//---------------------------------------------------------------------------
// Copyright (C) 2000 Dallas Semiconductor Corporation, All Rights Reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to dea... |
//
// LDAgreementsViewController.h
// PLLivingDemo
//
// Created by TaoZeyu on 16/7/27.
// Copyright © 2016年 com.pili-engineering. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface LDAgreementsViewController : UIViewController
@end
|
//
// JBChartTableCell.h
// JBChartViewDemo
//
// Created by Terry Worona on 11/8/13.
// Copyright (c) 2013 Jawbone. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef NS_ENUM(NSInteger, JBChartTableCellType){
JBChartTableCellTypeLineChart,
JBChartTableCellTypeBarChart
};
@interface JBChartTableCell : ... |
/*
** xdup2.c for 42sh in /u/all/jorge_d/cu/svn/42shsvn/trunk/lib
**
** Made by dimitri jorge
** Login <jorge_d@epitech.net>
**
** Started on Sun May 23 16:06:44 2010 dimitri jorge
** Last update Sun May 23 16:06:45 2010 dimitri jorge
*/
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include "lib.h"
... |
/*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org
Copyright (c) 2000-2013 Torus Knot Software Ltd
Permission is hereby granted, free of charge, to any person obtain... |
#ifndef __KONSTRUKT_LUA_BINDINGS_IMAGE__
#define __KONSTRUKT_LUA_BINDINGS_IMAGE__
struct lua_State;
struct Image;
Image* GetImageFromLua( lua_State* l, int stackPosition );
Image* CheckImageFromLua( lua_State* l, int stackPosition );
void RegisterImageInLua();
#endif
|
//%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... |
/****************************************************************************/
// Hardware: Grove - I2C Color Sensor
// Arduino IDE: Arduino-1.6
//
// Refactored version of the library by FrankieChu - www.seeedstudio.com
//
/******************************************************************************/
#ifndef ... |
//
// TBActorOperation+Supervision.h
// ActorKitSupervision
//
// Created by Julian Krumow on 15.12.15.
// Copyright (c) 2015 Julian Krumow. All rights reserved.
//
#import <ActorKit/ActorKit.h>
NS_ASSUME_NONNULL_BEGIN
/**
* This category extends TBActorOperation with methods specific to supervision.
*/
@inte... |
/*! \file $Id: WinRobotService.h 94 2011-10-08 15:36:05Z caoym $
* \author caoym
* \brief CWinRobotService
*/
#pragma once
#include "resource.h"
#include "WinRobotCore_i.h"
#include "sync/cslock.h"
#include <map>
#include "reference/IReference.h"
//! manager WinRobot sessions
/*
run as a Windows service,while... |
#include "RedBlackTree.c"
|
/*
* Generated by class-dump 3.4 (64 bit).
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard.
*/
#import "NSObject.h"
@class NSString;
@interface IDEInspectorTextEnumerationOption : NSObject
{
BOOL _hidden;
NSString *_title;
id _value;
}
- (void).cxx_destruct;
-... |
//
// UIViewController+ELNUtils.h
// e-legion
//
// Created by Dmitry Nesterenko on 09.10.15.
// Copyright © 2015 e-legion. All rights reserved.
//
@import UIKit;
NS_ASSUME_NONNULL_BEGIN
@interface UIViewController (ELNUtils)
/**
Adds self as child view controller with specified view block.
You must layout a... |
// Copyright (C) 2016-2021 Yixuan Qiu <yixuan.qiu@cos.name>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
#ifndef SPECTRA_DENSE_CHOLESKY_H
#define SPECTRA_DENSE... |
#include <stdio.h>
#include <stdlib.h>
int is_prime(int n)
{
int c,i;
i=2;
c=1;
while(i<n)
{
if (n%i==0)
{
c=0;
}
i++;
}
if (n<=0)
{
c=-1;
}
return c;
}
int main()
{
int n,c;
scanf("%d",&n);
c=is_prime(n);
printf("%d\n",c);
return 0;
}
|
/**
* \file
*
* \brief IO related functionality declaration.
*
* Copyright (C) 2014 Atmel Corporation. All rights reserved.
*
* \asf_license_start
*
* \page License
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are... |
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* This code implements the MD5 message-digest algorithm.
* The algorithm is due to Ron Rivest. This code was
* written by Colin Plumb in 1993, no copyright is claimed.
* This code is in the public domain; do with it what you wish.
*
*... |
#include "plumber.h"
int sporth_bal(sporth_stack *stack, void *ud)
{
plumber_data *pd = ud;
SPFLOAT sig;
SPFLOAT comp;
SPFLOAT out;
sp_bal *bal;
switch(pd->mode) {
case PLUMBER_CREATE:
#ifdef DEBUG_MODE
fprintf(stderr, "bal: Creating\n");
#endif
sp_bal_create(... |
#ifndef RCR_GEOVIS_UPDATEABLE_H
#define RCR_GEOVIS_UPDATEABLE_H
namespace rcr {
namespace geovis {
// Use this interface when class instances must be constantly updated.
// This is a workaround for the lack of (reliable) support of threading
// on embedded architectures.
class Updateable {
public:
// Do this every... |
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
typedef struct TreeNode{
int value;
struct TreeNode *leftChild;
struct TreeNode *rightChild;
}*BinarySearchTree, TreeNode;
BinarySearchTree makeEmpty(BinarySearchTree T);
TreeNode* findValueInTree(int value, BinarySearchTree T);
TreeNode* findMinI... |
/**
* @file adin_mic_linux.c
*
* <JA>
* @brief ¥Þ¥¤¥¯ÆþÎÏ (Linux) - ¥Ç¥Õ¥©¥ë¥È¥Ç¥Ð¥¤¥¹
*
* ¥Þ¥¤¥¯ÆþÎϤΤ¿¤á¤ÎÄã¥ì¥Ù¥ë´Ø¿ô¤Ç¤¹¡¥
* ¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤òÌÀ¼¨»ØÄꤷ¤Ê¤¤ (-input mic) ¾ì¹ç¤Ë¸Æ¤Ð¤ì¤Þ¤¹¡¥
* ALSA, PulesAudio, OSS, ESD ¤Î½ç¤ÇºÇ½é¤Ë¸«¤Ä¤«¤Ã¤¿¤â¤Î¤¬»ÈÍѤµ¤ì¤Þ¤¹¡¥
* ¤½¤ì¤¾¤ì¤Î API ¤òÌÀ¼¨Åª¤Ë»ØÄꤷ¤¿¤¤¾ì¹ç¤Ï... |
#pragma once
#include <spotify/json.hpp>
#include <noise/noise.h>
#include "noise/module/Wrapper.h"
namespace spotify
{
namespace json
{
template<>
struct default_codec_t<noise::module::Wrapper<noise::module::Clamp>>
{
using ClampWrapper = noise::module::Wrapper<noise::module::Clamp>;
static codec::object_t... |
#pragma once
#include "lpg_value.h"
typedef struct generic_enum_instantiation
{
generic_enum_id generic;
type *argument_types;
value *arguments;
size_t argument_count;
enum_id instantiated;
} generic_enum_instantiation;
generic_enum_instantiation generic_enum_instantiation_create(generic_enum_id g... |
#ifndef GUIUTIL_H
#define GUIUTIL_H
#include <QString>
#include <QObject>
#include <QMessageBox>
QT_BEGIN_NAMESPACE
class QFont;
class QLineEdit;
class QWidget;
class QDateTime;
class QUrl;
class QAbstractItemView;
QT_END_NAMESPACE
class SendCoinsRecipient;
/** Utility functions used by the BusinessCoin Qt UI.
*/
n... |
/****************************************************************************
Copyright (c) 2010-2011 cocos2d-x.org
Copyright (c) 2011 Ricardo Quesada
Copyright (c) 2011 Zynga Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and asso... |
/***************************************************************************/
/* */
/* tterrors.h */
/* */
/* ... |
/*
* trickle.c
*
* Copyright (c) 2002, 2003 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
* $Id: trickle.c,v 1.18 2004/02/13 06:13:05 marius Exp $
*/
#include <sys/types.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <sys/param.h>
#include <sys/stat.h>
#i... |
#pragma once
#include <GLUL/Config.h>
#include <GL/glew.h>
#include <cstddef>
namespace GL {
class GLUL_API VertexAttrib {
public:
VertexAttrib();
VertexAttrib(GLuint index_, GLint size_, GLenum type_, GLsizei stride_, GLvoid* offset_);
VertexAttrib(GLuint index_, G... |
#include "machine.h"
//! Second exemple de segment de texte.
/*!
* \note On voit ici l'intérêt de l'initialisation d'une union avec nommage
* explicite des champs.
*/
Instruction text[] = {
// type cop imm ind regcond operand
//-------------------------------------------------------------
{.instr_absolute ... |
/****************************************************************
*
* Copyright 2013, Big Switch Networks, Inc.
*
* Licensed under the Eclipse Public License, Version 1.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* ... |
/* RT-Thread config file */
#ifndef __RTTHREAD_CFG_H__
#define __RTTHREAD_CFG_H__
/* RT_NAME_MAX*/
#define RT_NAME_MAX 8
/* RT_ALIGN_SIZE*/
#define RT_ALIGN_SIZE 8
/* PRIORITY_MAX */
#define RT_THREAD_PRIORITY_MAX 32
/* Tick per Second */
#define RT_TICK_PER_SECOND 100
/* SECTION: RT_DEBUG */
/* Thread Debug */
#d... |
/*
* Copyright 2007-2010 Analog Devices Inc.
*
* Licensed under the GPL-2 or later.
*/
#ifndef _MACH_BLACKFIN_H_
#define _MACH_BLACKFIN_H_
#include "bf548.h"
#include "anomaly.h"
#include <asm/def_LPBlackfin.h>
#ifdef CONFIG_BF542
# include "defBF542.h"
#endif
#ifdef CONFIG_BF544
# include "defB... |
/********************************************************************\
* 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... |
//
// PBAddRemoteSheet.h
// GitX
//
// Created by Nathan Kinsinger on 12/8/09.
// Copyright 2009 Nathan Kinsinger. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class PBGitRepository;
@interface PBAddRemoteSheet : NSWindowController {
PBGitRepository *repository;
NSTextField *remoteName;
NSTextField *rem... |
/**
* @file
*
* @brief Locking and Unlocking a Mutex
* @ingroup POSIXAPI
*/
/*
* COPYRIGHT (c) 1989-2007.
* 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.com/license/... |
/*
* Adium is the legal property of its developers, whose names are listed in the copyright file included
* with this source distribution.
*
* 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; ... |
/*
* gedit-animated-overlay.h
* This file is part of gedit
*
* Copyright (C) 2011 - Ignacio Casal Quinteiro
*
* gedit 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... |
//
// AMPTranslateView.h
// AMPTranslate
//
// Created by Joe on 19/11/13.
// Copyright (c) 2013 Bloop. All rights reserved.
//
#import <AMPluginFramework/AMPluginFramework.h>
@interface AMPTranslateView : AMPView
{
NSPopUpButton *popUpBtnRender;
}
@end
|
#ifndef __LINUX_COMPILER_H
#error "Please don't include <linux/compiler-gcc.h> directly, include <linux/compiler.h> instead."
#endif
/*
* Common definitions for all gcc versions go here.
*/
#define GCC_VERSION (__GNUC__ * 10000 \
+ __GNUC_MINOR__ * 100 \
+ __GNUC_PATCHLEVEL__)
/* Optimization barrier */
... |
/*
* ircd-ratbox: A slightly useful ircd.
* m_time.c: Sends the current time on the server.
*
* 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 free software; ... |
// qjackctlPatchbayFile.h
//
/****************************************************************************
Copyright (C) 2003-2011, rncbc aka Rui Nuno Capela. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as pu... |
/*
* 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... |
// _________ __ __
// / _____// |_____________ _/ |______ ____ __ __ ______
// \_____ \\ __\_ __ \__ \\ __\__ \ / ___\| | \/ ___/
// / \| | | | \// __ \| | / __ \_/ /_/ > | /\___ |
// /_______ /|__| |__| (____ /__| (____ /\___ /|____//... |
/* Same. Just like SNAT, only try to make the connections
* between client A and server B always have the same source ip.
*
* (C) 2000 Paul `Rusty' Russell
* (C) 2001 Martin Josefsson
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Licen... |
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2008-2009 coresystems GmbH
*
* 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... |
/*
* drivers/regulator/axp173-regulator.c
*
* Regulator driver for RICOH R5T619 power management chip.
*
* Copyright (C) 2012-2014 RICOH COMPANY,LTD
*
* Based on code
* Copyright (C) 2011 NVIDIA Corporation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the G... |
/*
* Copyright (C) 2012 Mark Hills <mark@pogo.org.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.
*
* This program is distributed in the hope that it will be useful, but
... |
/*
* Copyright (c) 2009, Eric Forgeot
*
* Based on work by Jon Strait
*
* This source code is released for free distribution under the terms of the
* GNU General Public License.
*
* This module contains functions for generating tags for Abc files.
*/
/*
* INCLUDE FILES
*/
#include "general.h" /* must alway... |
#ifndef _PERLDOC_H_
#define _PERLDOC_H_
#include <qobject.h>
#include <kio/slavebase.h>
class PerldocProtocol : public KIO::SlaveBase
{
public:
PerldocProtocol(const QCString &pool, const QCString &app);
virtual ~PerldocProtocol();
virtual void get(const KURL& url);
virtual void stat(const KURL& url... |
/*
* Copyright (C) 2012 Broadcom Corporation.
*
* 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... |
//
// BFAppDelegate.h
// OpenShop
//
// Created by Jirka Apps
// Copyright (c) 2015 Business Factory. All rights reserved.
//
@import UIKit;
#import "BFTabBarController.h"
NS_ASSUME_NONNULL_BEGIN
/**
* `BFAppDelegate` represents the aplication starting point. It implements `UIApplicationDelegate`
* to manage t... |
/**
*
* Copyright (C) 2009 Daniel-Constantin Mierla (asipto.com)
*
* This file is part of kamailio, a free SIP server.
*
* kamailio 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 t... |
#ifndef ZM_VIDEOSTORE_H
#define ZM_VIDEOSTORE_H
#include "zm_config.h"
#include "zm_define.h"
#include "zm_ffmpeg.h"
#include "zm_swscale.h"
#include <memory>
extern "C" {
#include <libswresample/swresample.h>
#include <libavutil/audio_fifo.h>
#if HAVE_LIBAVUTIL_HWCONTEXT_H
#include <libavutil/hwcontext.h>
#endif
}... |
#ifndef AKM09911_H
#define AKM09911_H
#include <linux/ioctl.h>
#define AK09911_REG_WIA1 0x00
#define AK09911_REG_WIA2 0x01
#define AK09911_REG_INFO1 0x02
#define AK09911_REG_INFO2 0x03
#define AK09911_REG_ST1 0x10
#define AK09911_REG_HXL 0x11
#define AK09911_REG_HXH 0x12
#define AK09911_REG_HYL 0x... |
namespace Map {
class Vendig {
public:
short index;
short amount;
int value;
DBMap vending_getdb();
void do_final_vending();
void do_init_vending();
void do_init_vending_autotrade();
void vending_reopen(Map::PC sd);
void vending_closevending(Map::PC sd);
bool vending_openvending(Map::PC sd... |
/*
*
* Copyright (c) International Business Machines Corp., 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 version 2 of the License, or
* (at your option) any l... |
// Maintainer: Max Howell <max.howell@methylblue.com>, (C) 2004
// Copyright: See COPYING file that comes with this distribution
//
// Description: a popupmenu to control various features of Pana
// also provides Pana's helpMenu
#ifndef PANA_ACTIONCLASSES_H
#define PANA_ACTIONCLASSES_H
#include "engineo... |
/*
* Network layer for MPlayer
* by Bertrand BAUDET <bertrand_baudet@yahoo.com>
* (C) 2001, MPlayer team.
*/
#ifndef MPLAYER_NETWORK_H
#define MPLAYER_NETWORK_H
#include <fcntl.h>
#include <sys/time.h>
#include <sys/types.h>
#include "config.h"
#if !HAVE_WINSOCK2_H
#include <netdb.h>
#include <netinet/in.h>
#inc... |
/*
* Copyright (C) 2015 Hauke Petersen <mail@haukepetersen.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 version 2
* of the License, or (at your option) any later version.
... |
#ifndef __UM_SEGMENT_H
#define __UM_SEGMENT_H
extern int host_gdt_entry_tls_min;
#define GDT_ENTRY_TLS_ENTRIES 3
#define GDT_ENTRY_TLS_MIN host_gdt_entry_tls_min
#define GDT_ENTRY_TLS_MAX (GDT_ENTRY_TLS_MIN + GDT_ENTRY_TLS_ENTRIES - 1)
#endif
|
/*
* 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
... |
/*
* Copyright (C) 2016-2017 Team Kodi
* http://kodi.tv
*
* 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.
*
* T... |
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2010 Advanced Micro Devices, 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 ... |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License")... |
/***************************************************************************
* Copyright (c) 1999-2010, Broadcom Corporation
*
* 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.
... |
/**
* \file sha512.h
*
* \brief SHA-384 and SHA-512 cryptographic hash function
*
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the L... |
/*
* Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
* Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
* Copyright (C) 2007 Eric Seidel <eric@webkit.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* Licen... |
/*
* Copyright (c) 2000, Red Hat, 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.
*
* ... |
/**********************************************************************
*
* Copyright(c) 2008 Imagination Technologies Ltd. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published... |
#ifndef mcfqspi_h
#define mcfqspi_h
#include <linux/config.h>
#define QSPIIOCS_DOUT_HIZ 1 /* QMR[DOHIE] set hi-z dout between transfers */
#define QSPIIOCS_BITS 2 /* QMR[BITS] set transfer size */
#define QSPIIOCG_BITS 3 /* QMR[BITS] get transfer size */
#define QSPIIOCS_CPOL 4 /* QMR[CPOL] set SCK inactive state ... |
//
// NSFileManager+Verification.h
// Sparkle
//
// Created by Andy Matuschak on 3/16/06.
// Copyright 2006 Andy Matuschak. All rights reserved.
//
#import <Cocoa/Cocoa.h>
// For the paranoid folks!
@interface NSFileManager (SUVerification)
- (BOOL)validatePath:(NSString *)path withMD5Hash:(NSString *)hash;
- (BO... |
/*
* 6.7.6 Retrieve Return Status of Asynchronous I/O Operation,
* P1003.1b-1993, p. 162
*
* COPYRIGHT (c) 1989-2007.
* 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.r... |
/**
* Marlin 3D Printer Firmware
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General... |
/*
* Copyright 2008, Freescale Semiconductor, Inc
* Andy Fleming
*
* Copyright 2013 Google Inc. All rights reserved.
* Copyright 2017 Intel Corporation
*
* MultiMediaCard (MMC), eMMC and Secure Digital (SD) erase support code.
* This code is controller independent.
*
* This program is free software; you can ... |
#include "mfbmap.h"
#include "../../../mfb/mfbcmap.c"
|
/**
******************************************************************************
* @file usbd_cdc_if_template.h
* @author MCD Application Team
* @version V2.3.0
* @date 04-November-2014
* @brief Header for usbd_cdc_if_template.c file.
*****************************************************... |
/***********************************************************************************
* *
* Voreen - The Volume Rendering Engine *
* ... |
/*
* Copyright (C) 2009, 2013 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 condit... |
/* libSoX effect: Output audio to a file (c) 2008 robs@users.sourceforge.net
*
* 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.1 of the License, or (at
* your opti... |
/*
* Copyright (C) 2013, 2014 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 condit... |
#ifndef LANGCOMPARE_H
#define LANGCOMPARE_H
#include "LangFile.h"
class LangCompare {
private:
LangFile& reference;
LangFile& compare;
void Compare();
public:
LangCompare(LangFile& reference, LangFile& compare);
~LangCompare();
protected:
};
#endif
|
/*
* Copyright (C) 2004-2010 Geometer Plus <contact@geometerplus.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 ver... |
/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright 2000-2002 by Hans Reiser, licensing governed by reiserfs/README
*
* GRUB -- GRand Unified Bootloader
* Copyright (C) 2000, 2001 Free Software Foundation, Inc.
*
* (C) Copyright 2003 Sysgo Real-Time Solutions, AG <www.elinos.com>
* Pavel Bartusek <pba... |
/**
* This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS.
*
* 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... |
/* Copyright (c) 2012, Code Aurora Forum. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope th... |
/* $Id: mpnotification-r0drv-solaris.c $ */
/** @file
* IPRT - Multiprocessor Event Notifications, Ring-0 Driver, Solaris.
*/
/*
* Copyright (C) 2008-2015 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
... |
#ifndef __DTYPE__DREAM2
#define __DTYPE__DREAM2
#include "dreamCompileConfig.h"
typedef unsigned char u8;
typedef unsigned short u16;
typedef short s16;
typedef char c8;
typedef char s8;
typedef int s32;
typedef unsigned int u32;
typedef float f32;
typedef double f64;
#ifdef USE_GNUCX64
typedef unsigned long u64;
typ... |
//
// PlaylistEntry.h
// Cog
//
// Created by Vincent Spader on 3/14/05.
// Copyright 2005 Vincent Spader All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface PlaylistEntry : NSObject {
int index;
int shuffleIndex;
BOOL current;
BOOL removed;
BOOL stopAfter;
BOOL queued;
int queuePosition;
B... |
//
// Widget.h
// allAddonsExample
//
// Created by André Perrotta on 6/15/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#ifndef MARSYAS_WIDGET_H
#define MARSYAS_WIDGET_H
//#include "ofMain.h" FIXME: is this really necessary
namespace Marsyas
{
class GraphicalEnvironment;
clas... |
#ifndef __DIGI_DOC_PKCS11_H__
#define __DIGI_DOC_PKCS11_H__
//==================================================
// FILE: DigiDocPKCS11.h
// PROJECT: Digi Doc
// DESCRIPTION: Digi Doc functions for signing using PKCS#11 API
// AUTHOR: Veiko Sinivee, S|E|B IT Partner Estonia
//======================================... |
#ifndef _BASTET_RABM_INTERFACE_H_
#define _BASTET_RABM_INTERFACE_H_
/*****************************************************************************
1 ÆäËûÍ·Îļþ°üº¬
*****************************************************************************/
#include "vos.h"
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
... |
#ifndef _GSMTAP_H
#define _GSMTAP_H
/* gsmtap header, pseudo-header in front of the actua GSM payload */
/* GSMTAP is a generic header format for GSM protocol captures,
* it uses the IANA-assigned UDP port number 4729 and carries
* payload in various formats of GSM interfaces such as Um MAC
* blocks or Um bursts.
... |
/*
* LibSylph -- E-Mail client library
* Copyright (C) 1999-2006 Hiroyuki Yamamoto
*
* 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.1 of the License, or (at you... |
// Copyright (C) 2014. Ben Pruitt & Nick Conway; Wyss Institute
// See LICENSE for full GPLv2 license.
// #
// 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... |
#define SERIALNUM "20060102_1"
|
/*
* drivers/i2c/busses/i2c-vr41xx.c
*
* The NEC VR41XX series does not have an I2C controller, but some boards, such
* as the NEC CMB-VR4133, use GPIO pins to create an I2C bus.
*
* Author: Wade Farnsworth <wfarnsworth@mvista.com>
*
* Copyright (c) 2006 MontaVista Software Inc.
*
* This is based on i2c-ixp4x... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.