text
stringlengths
4
6.14k
// default_allocator.h // The default allocator is a simple wrapper for the new and delete functions. #ifndef DEMO_DEFAULT_ALLOCATOR_H #define DEMO_DEFAULT_ALLOCATOR_H #include <assert.h> #include "demo/memory/iallocator.h" namespace demo { namespace mem { template <typename T> class DefaultAllocator : public IAll...
#ifndef JEU_H_ #define JEU_H_ #include <vector> #include <iostream> #include <cstdlib> #include "Joueur.h" #include "Grille.h" #include "Coordonnee.h" class Jeu { public: Jeu(int nombreJoueurs); void start(); private: std::vector<Joueur*> joueurs; Joueur* gagnant; Grille *grille; bool jeuFini(); bool...
#include <stdio.h> #include <stdlib.h> /* For exit() function */ #include <time.h> char *rand_string(char*, size_t); int main(int argc, char* argv[]) { if (argc < 2) return 1; char* c=argv[1];//[25]="glrpvpkxdvhisgkmudwyknbai"; FILE *rfile, *wfile; wfile=fopen("program.txt","w"); if(wfile==NULL){ ...
//%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...
// RUN: %tool "%s" > "%t" // RUN: %diff %INCORRECT "%t" int main() { int m; int n; int i; int j; /* calculate m times n times 2 */ assume(m >= 1000); assume(m <= 1024); assume(n >= 0); assume(n <= 64); i=m; // incorrect j=0; while(j < m) //invariant (i == 2*j*n) //invariant ...
#if defined(PEGASUS_OS_HPUX) # include "UNIX_PolicyRuleInSystemPrivate_HPUX.h" #elif defined(PEGASUS_OS_LINUX) # include "UNIX_PolicyRuleInSystemPrivate_LINUX.h" #elif defined(PEGASUS_OS_DARWIN) # include "UNIX_PolicyRuleInSystemPrivate_DARWIN.h" #elif defined(PEGASUS_OS_AIX) # include "UNIX_PolicyRuleInSystemPrivate_...
// Copyright (c) 2019 The Gulden developers // Authored by: Malcolm MacLeod (mmacleod@gmx.com) // Distributed under the GULDEN software license, see the accompanying file COPYING // This file is a thin wrapper around the actual 'echo256_aesni_opt', along with various other similarly named files. // The build system co...
/** file stdlib.h 'Standard library' functions, for whatever that means. */ #ifndef STDLIB_INCLUDE #define STDLIB_INCLUDE #include <types.h> /** Causes normal program termination and the value of status is returned to the parent. All open streams are flushed and closed. */ void exit(int status) NONBANKED;...
#ifndef MCLIB_COMMON_DATA_BUFFER_H_ #define MCLIB_COMMON_DATA_BUFFER_H_ #include <mclib/common/Common.h> #include <vector> #include <algorithm> #include <cstring> #include <cassert> namespace mc { class MCString; class VarInt; class DataBuffer { private: typedef std::vector<u8> Data; Data m_Buffer; std:...
/* * Auto generated Run-Time-Environment Component Configuration File * *** Do not modify ! *** * * Project: 'arm_nnexamples_gru' * Target: 'ARMCM3' */ #ifndef RTE_COMPONENTS_H #define RTE_COMPONENTS_H /* * Define the Device Header File: */ #define CMSIS_device_header "ARMCM3.h" ...
#pragma once #include "BarUIControl.h" class OxygenUI : public BarUIControl { public: OxygenUI(); virtual ~OxygenUI(); void init(); };
// // UIView+CornerRadius.h // JMJUtilities // // Created by J.J. Jackson on 2/27/13. // #import <UIKit/UIKit.h> @interface UIView (CornerRadius) /** * A corner radius used to round the corners. Setting this removes any corner specific radii. * If specific radii are set, this will return -1.0. */ @property (as...
/** * \file * \brief echoserver local interface */ /* * Copyright (c) 2008, ETH Zurich. * All rights reserved. * * This file is distributed under the terms in the attached LICENSE file. * If you do not find this file, copies can be found by writing to: * ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zuric...
/** * Copyright (c) 2018 The cxkernel Authors. All rights reserved. * Use of this source code is governed by a MIT-style * license that can be found in the LICENSE file or at * https://opensource.org/licenses/MIT * * @file bitmap.h * @author Kevin Dai \<kevindai02@outlook.com\> * @date Created on De...
/*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| | _ <| |___ * \___|\...
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// /// Copyright 2009 Aurora Feint, Inc. /// /// Licensed under the Apache License, Version 2.0 (the "License"); /// you may not use this file except in compliance with the License. /// You ma...
// // PeripheralDetailsViewController.h // UHNBLEController // // Created by Nathaniel Hamming on 2015-02-10. // Copyright (c) 2015 University Health Network. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), t...
#include "soundpipe.h" #include "md5.h" #include "tap.h" #include "test.h" typedef struct { sp_expon *line; sp_osc *osc; sp_ftbl *ft; } UserData; int t_expon(sp_test *tst, sp_data *sp, const char *hash) { sp_srand(sp, 1234567); uint32_t n; int fail = 0; SPFLOAT osc = 0, line = 0; SPF...
// // STEmoji.h // STEmojiKeyboard // // Created by zhenlintie on 15/5/29. // Copyright (c) 2015年 sTeven. All rights reserved. // #import <Foundation/Foundation.h> typedef NS_ENUM(NSUInteger, STEmojiType) { // emoji show type STEmojiTypePeople = 0, STEmojiTypeFlower, STEmojiTypeBell, STEmojiTy...
/*====================================================================================================*/ /*====================================================================================================*/ #include "stm32f1_system.h" #include "stm32f1_spi.h" #include "module_w25qxx.h" /*============================...
/* Copyright (c) 2012 Tyrone Trevorrow 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 without restriction, including without limitation the rights to use, copy, modify, merge, publish, distr...
#import <UIKit/UIKit.h> FOUNDATION_EXPORT double Pods_DoITT_BookSelectorVersionNumber; FOUNDATION_EXPORT const unsigned char Pods_DoITT_BookSelectorVersionString[];
// Copyright (c) 2014 The Unpay developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef _KEEPASS_H_ #define _KEEPASS_H_ #define KEEPASS_CRYPTO_KEY_SIZE 32 #define KEEPASS_CRYPTO_BLOCK_SIZE 16 #define KEEPASS_KEEP...
/*++ /* NAME /* cleanup_map11 3 /* SUMMARY /* one-to-one mapping /* SYNOPSIS /* #include <cleanup.h> /* /* int cleanup_map11_external(state, addr, maps, propagate) /* CLEANUP_STATE *state; /* VSTRING *addr; /* MAPS *maps; /* int propagate; /* /* int cleanup_map11_internal(state, addr, maps, propagate) /* CLEANUP_STATE ...
/****************************************************************************** * Wormux is a convivial mass murder game. * Copyright (C) 2001-2004 Lawrence Azzoug. * * 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 *...
/* * upgraded-guacamole - A Terraria server written in C for POSIX operating systems * Copyright (C) 2016 Tyler Watson <tyler@tw.id.au> * * This file is part of upgraded-guacamole. * * upgraded-guacamole is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as p...
/* Cabal - Legacy Game Implementations * * Cabal 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 t...
#ifndef KFB_GENERAL_H #define KFB_GENERAL_H struct kfb_point general_print_char(char c, unsigned int i, unsigned int j, struct kfb_color fore_color, struct kfb_color bg_color, struct kfb_handle* handle); struct kfb_point general_print_str(const char* str, unsigned int x1, unsigned int x2...
/********************************************************************** * $Id$ * * PostGIS - Spatial Types for PostgreSQL * Copyright 2009 Paul Ramsey <pramsey@cleverelephant.ca> * * This is free software; you can redistribute and/or modify it under * the terms of the GNU General Public Licence. See the COPYING ...
#ifndef _MMC_CORE_SD_H #define _MMC_CORE_SD_H #include <linux/mmc/card.h> extern struct device_type sd_type; int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr); int mmc_sd_get_csd(struct mmc_host *host, struct mmc_card *card); void mmc_decode_cid(struct mmc_card *card); int mmc_sd_setu...
/* * This file is part of the syndication library * * Copyright (C) 2006 Frank Osterfeld <osterfeld@kde.org> * * 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; either * version 2 ...
/* * This file is part of the coreboot project. * * Copyright (C) 2007 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 version 2 as * published by the Free Software Foundation. * * This program is distr...
/* * (c) 2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de> * economic rights: Technische Universität Dresden (Germany) * * This file is part of TUD:OS and distributed under the terms of the * GNU General Public License 2. * Please see the COPYING-GPL-2 file for details. */ #ifndef L4_CXX_UART_DUMMY_H__ #def...
/* * WILL BE CHANGE TO VERSION2 LIBRARY * * * Redifei: E02_1 MPU6050 Library Example ****************************************************************************** * This file is part of Redifei Library. * * Redifei Library is free software: you can redistribute it and/or modify * it under the terms o...
/* * Copyright (C) by Olivier Goffart <ogoffart@woboq.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. * *...
/** * @file * * @brief POSIX Key Private Support * * This include file contains all the private support information for * POSIX key. */ /* * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICEN...
/* * NVRAM definitions and access functions. * * 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 _ASM_P...
/* * FIPS 200 support. * * Copyright (c) 2008 Neil Horman <nhorman@tuxdriver.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) *...
//============================================================================= // MuseScore // Music Composition & Notation // $Id: tempo.h 5574 2012-04-23 18:54:54Z wschweer $ // // Copyright (C) 2002-2011 Werner Schweer // // This program is free software; you can redistribute it and/or modify // it under the ...
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2005,2006,2007 INRIA * * 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 d...
/* * This software is licensed under the terms of the GNU General Public * License version 2, as published by the Free Software Foundation, and * may be copied, distributed, and modified under those terms. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even...
/** * @file dnssrv.h */ /* purple * * Copyright (C) 2005, Thomas Butter <butter@uni-mannheim.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 *...
/* * Human Monitor Interface * * Copyright IBM, Corp. 2011 * * Authors: * Anthony Liguori <aliguori@us.ibm.com> * * This work is licensed under the terms of the GNU GPL, version 2. See * the COPYING file in the top-level directory. * */ #ifndef HMP_H #define HMP_H #include "qemu-common.h" #include "qap...
/* flexNES - Flexible NAT Emulation Software Copyright (C) 2008, Jeremy Beker <gothmog@confusticate.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...
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #include "sd-bus.h" #include "hashmap.h" enum bus_match_node_type { BUS_MATCH_ROOT, BUS_MATCH_VALUE, BUS_MATCH_LEAF, /* The following are all different kinds of compare nodes */ BUS_MATCH_SENDER, BUS_MATCH_...
/* mersenne.h Mersenne Twister PRNG Copyright (C) 2013 Bill Currie <bill@taniwha.org> Author: Bill Currie <bill@taniwha.org> Date: 2013/01/21 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...
#ifndef INCLUDE_FILES_H #define INCLUDE_FILES_H #include<hashedstring.h> typedef HashedStringSet IncludeFiles; class PathFileSearch { public: private: }; #endif
/* * Copyright (c) 2002, 2012 Jens Keiner, Stefan Kunis, Daniel Potts * * 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...
/* * This is the source code of Telegram for iOS v. 1.1 * It is licensed under GNU GPL v. 2 or later. * You should have received a copy of the license in this archive (see LICENSE). * * Copyright Peter Iakovlev, 2013. */ #import "TGActor.h" #import "ASWatcher.h" #import "TGTelegraphProtocols.h" #import "TLMet...
// // BFInfoSettingsItemsTableViewCellExtension.h // OpenShop // // Created by Jirka Apps // Copyright (c) 2015 Business Factory. All rights reserved. // #import "BFBaseTableViewCellExtension.h" #import "BFInfoPage.h" NS_ASSUME_NONNULL_BEGIN /** * `BFInfoSettingsItemsTableViewCellExtension` manages info setti...
/* * Copyright (c) 2014 Dmitry Kazakov <dimula73@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 option) any later version....
/* * Caja-Actions * A Caja extension which offers configurable context menu actions. * * Copyright (C) 2005 The GNOME Foundation * Copyright (C) 2006-2008 Frederic Ruaudel and others (see AUTHORS) * Copyright (C) 2009-2012 Pierre Wieser and others (see AUTHORS) * * Caja-Actions is free software; you can redistr...
#pragma once /* * Copyright (C) 2012-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...
#ifndef MUI_TEXT_H #define MUI_TEXT_H enum { UI_comp1 = UI_last_mame_entry, UI_comp2, UI_keyb1, UI_keyb2, UI_keyb3, UI_keyb4, UI_keyb5, UI_keyb6, UI_keyb7, UI_imageinfo, UI_filemanager, UI_tapecontrol, UI_notapeimageloaded, UI_recording, UI_playing, UI_recording_inhibited, UI_playing_inhibited, UI_...
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> // System.Runtime.Remoting.ChannelData struct ChannelData_t1145; // System.Collections.ArrayList struct ArrayList_t399; // System.Collections....
/* * (C) Copyright 2015 Google, Inc * Written by Simon Glass <sjg@chromium.org> * * SPDX-License-Identifier: GPL-2.0+ * * Helper functions for Rockchip images */ #include "imagetool.h" #include <image.h> #include <rc4.h> #include "mkimage.h" #include "rkcommon.h" enum { RK_SIGNATURE = 0x0ff0aa55, }; /** *...
/********************************************************************** * * PostGIS - Spatial Types for PostgreSQL * http://postgis.net * * Copyright 2011 Sandro Santilli <strk@keybit.net> * Copyright 2008 Paul Ramsey <pramsey@cleverelephant.ca> * Copyright 2007-2008 Mark Cave-Ayland * Copyright 2001-2006 Refr...
#pragma once /* * MinizipExtensions.h, part of VCMI engine * * Authors: listed in file AUTHORS in main folder * * License: GNU General Public License v2.0 or later * Full text of license available in license.txt file, in main folder * */ #ifdef USE_SYSTEM_MINIZIP #include <minizip/unzip.h> #include <minizip/z...
/* Wand Project - Ethernet Over UDP * $Id: daemons.h,v 1.4 2002/11/30 10:07:50 jimmyish Exp $ * Licensed under the GPL, see file COPYING in the top level for more * details. */ #ifndef DAEMONS_H #define DAEMONS_H #ifdef __cplusplus extern "C" { #endif void put_pid( char *fname ); void daemonise( char *n...
/* testIO.c */ #include "../Coords.h" #include "../../timings.h" /*--------------------------------------------------------------------*/ int main ( int argc, char *argv[] ) /* -------------------------------------------------- test Coords_readFromFile and Coords_writeToFile, useful for translating between...
/* Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies) Copyright (C) 2013 Company 100, Inc. 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; either version...
#include <linux/kernel.h> #include <linux/module.h> #include <mach/param.h> static void get_param_value(int idx, void *value); static void set_param_value(int idx, void *value); static int switch_sel = 5; /* USB_SAMSUNG_KIES_MASK | USB_SEL_MASK */ static int debug_level = 0; static int reboot_mode = REBOOT_MODE_NONE...
#include <algorithm> #include <assert.h> #include <fstream> #include <iomanip> #include <set> #include <string> #include <sstream> #include <time.h> #include <typeinfo> #include <vector> #include "../IAgent/IAgentLib.h" #include "../IExperiment/IExperimentLib.h" #include "../IMDP/IMDPLib.h" #include "../IMDPDistribut...
#include "plugin_renderer_gl/events.h" #include "plugin_renderer_gl/window.h" #include "framework/log.h" #include "util/pstdint.h" #include "glfw3.h" /* ------------------------------------------------------------------------- */ void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods) { uin...
/* * * Shell Command Set Management * * Author: * WORK: fernando.ruiz@ctv.es * HOME: correo@fernando-ruiz.com * * 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/LICENSE. * * $Id: shell_cmdset.c,v 1.6 200...
#ifndef __WM_H__ #define __WM_H__ void scan_wakeup_irq(unsigned int irq_num); #endif
/* * platform_msic_thermal.c: msic_thermal platform data initilization file * * (C) Copyright 2008 Intel Corporation * Author: * * 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...
/****************************************************************************** * Warmux is a convivial mass murder game. * Copyright (C) 2001-2010 Warmux 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 * th...
#ifndef RAMWATCH_H #define RAMWATCH_H bool ResetWatches(); void OpenRWRecentFile(int memwRFileNumber); extern bool AutoRWLoad; extern bool RWSaveWindowPos; #define MAX_RECENT_WATCHES 5 extern char rw_recent_files[MAX_RECENT_WATCHES][1024]; extern bool AskSave(); extern int ramw_x; extern int ramw_y; extern bool RWfileC...
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */ /* * Copyright (C) 2004 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; ei...
/* * libdpkg - Debian packaging suite library routines * t-pkginfo.c - test pkginfo handling * * Copyright © 2009 Guillem Jover <guillem@debian.org> * * 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 Foundat...
extern cl_enginefunc_t gEngfuncs; int Initialize(struct cl_enginefuncs_s *pEnginefuncs, int iVersion);
/* * Copyright (C) James R. Leu 2002 * jleu@mindspring.com * * This software is covered under the LGPL, for more * info check out http://www.gnu.org/copyleft/lgpl.html */ #ifndef _MPLS_MM_IMPL_H_ #define _MPLS_MM_IMPL_H_ #include "mpls_struct.h" /* * in: size * return: void* */ extern void *mpls_malloc...
// (C) Copyright 2005-2008 Benjamin Godon and contributors. // // This file is part of Cellule. // // Cellule 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 ...
/* * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2011-2015 ArkCORE <http://www.arkania.net/> * Copyright (C) 2005-2011 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 Licens...
/* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the <inttypes.h> header file. */ #define HAVE_INTTYPES_H 1 /* Define to 1 if you have the <memory.h> header file. */ #define HAVE_MEMORY_H 1 /* Define to 1 if you have...
/* (c) Copyright 2001-2008 The world wide DirectFB Open Source Community (directfb.org) (c) Copyright 2000-2004 Convergence (integrated media) GmbH All rights reserved. Written by Denis Oliver Kropp <dok@directfb.org>, Andreas Hundt <andi@fischlustig.de>, Sven Neumann <neo@di...
/* -*- linux-c -*- --------------------------------------------------------- * * * linux/fs/devpts/inode.c * * Copyright 1998-2004 H. Peter Anvin -- All Rights Reserved * * This file is part of the Linux kernel and is made available under * the terms of the GNU General Public License, version 2, or at your * o...
/* * file.c - NILFS regular file handling primitives including fsync(). * * Copyright (C) 2005-2008 Nippon Telegraph and Telephone 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 Found...
/* * gedit-theatrics-utils.h * This file is part of gedit * * Copyright (C) 2010 - Ignacio Casal Quinteiro * * Based on Mike Krüger <mkrueger@novell.com> work. * * gedit 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...
/* packet-v5ef.c * Routines for V5 envelope function frame disassembly * Rolf Fiedler <rolf.fiedler@innoventif.de> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 * * This program is free software; you can redistribute it and/or * modify it under the terms of ...
/*************************************************************************** opssupernovae.h - K Desktop Planetarium ------------------- begin : Thu, 25 Aug 2011 copyright : (C) 2011 by Samikshan Bairagya email ...
#pragma once #ifndef CURVE25519_DONNA_H #define CURVE25519_DONNA_H extern int curve25519_donna(uint8_t *, const uint8_t *, const uint8_t *); #endif
/* * Copyright (C) 2016 Stuart Howarth <showarth@marxoft.co.uk> * * 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 3, as published by the Free Software Foundation. * * This program is distributed in the ...
/* -*- mode: jde; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* Part of the Wiring project - http://wiring.uniandes.edu.co Copyright (c) 2004-05 Hernando Barragan This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as publish...
/* * This file is part of the libsigrok project. * * Copyright (C) 2013 Bert Vermeulen <bert@biot.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 3 of the License, o...
/* --------------------------------------------------------------------------------------- This source file is part of SWG:ANH (Star Wars Galaxies - A New Hope - Server Emulator) For more information, visit http://www.swganh.com Copyright (c) 2006 - 2014 The SWG:ANH Team ----------------------------------------------...
/* =========================================================================== Doom 3 GPL Source Code Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company. This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?). Doom 3 Source Code is free software: you can redistribute it and/or modify it...
/* -*- Mode: C++; coding: utf-8; tab-width: 3; indent-tabs-mode: tab; c-basic-offset: 3 -*- ******************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011. * * Al...
/*************************************************************************** $RCSfile$ ------------------- begin : Mon Jan 07 2008 copyright : (C) 2008 by Martin Preuss email : martin@libchipcard.de *************************************************************************** * Please see t...
#ifndef _HDD_ #define _HDD_ #pragma pack (push, 1) typedef struct _hdd_inf { u8 flags; u8 max_head; u8 max_sect; } hdd_inf; #define HDD_OK 0x01 #define HDD_LBA 0x02 typedef struct _partition { u8 hdd_n; /* HDD number */ u8 flags; /* partition flags */ u64 begin; /* partition offs...
/*! @file @verbatim $Id: AVIXOffsetData.h 52604 2008-04-23 05:33:29Z jbraness $ Copyright (c) 2006-2007 DivX, Inc. All rights reserved. This software is the confidential and proprietary information of DivX, Inc. and may be used only in accordance with the terms of your license from DivX, Inc. @endverbat...
#ifndef KEP_TOOL_CONFIG_H #define KEP_TOOL_CONFIG_H /// The following lines define the behaviour of the symbols that will be included in libraries. These are, by default, /// made visible in unix systems, otherwise they need to be made visible explicitely in windows systems #ifdef _WIN32 #ifdef KEP_TOOL_DLL_EXPORT_...
#pragma once #include <vector> #include "Entity.h" #include "Map.h" struct EntityRenderer { void renderPolygon( std::vector<SVector2Df>& listPoints, Map<char>& map, char character); void renderCircle( SVector2Df point, float ratio, Map<char>& map, char character); void renderPoints ( std::vector<SVector2Df>& list...
/* Free Download Manager Copyright (c) 2003-2014 FreeDownloadManager.ORG */ #if !defined(AFX_VMSAPPUTIL_H__E0C0FA99_0E90_4A12_9D11_213C6C368ADB__INCLUDED_) #define AFX_VMSAPPUTIL_H__E0C0FA99_0E90_4A12_9D11_213C6C368ADB__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif class vmsAppUtil { public: ...
/** @file Image1.h @maintainer Morgan McGuire, http://graphics.cs.williams.edu @created 2007-01-31 @edited 2007-01-31 */ #ifndef G3D_IMAGE1_H #define G3D_IMAGE1_H #include "G3D/platform.h" #include "G3D/Map2D.h" #include "G3D/Color1.h" #include "G3D/GImage.h" namespace G3D { typedef ReferenceCountedPoin...
/******************************************************************************/ /*Files to Include */ /******************************************************************************/ #include <xc.h> /* HiTech General Includes */ #include <stdint.h>...
typedef unsigned char uint8; typedef unsigned short uint16; typedef unsigned int uint32; typedef char int8; typedef short int16; typedef int int32;
/*************************************************************************************** * Genesis Plus * Virtual System Emulation * * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Charles Mac Donald (original code) * Eke-Eke (2007-2011), additional code & fixes for the GCN/Wii port * * This prog...
#pragma once #include "Constants.h" #include "Entity.h" CLASS(Enemy) { Entity* entity; }; Enemy* Enemy_createWhiteKnight(struct Scene* scene, SDL_Point tilePos); void Enemy_draw(void* context, SDL_Renderer* renderer, Camera* camera); void Enemy_update(void* context, RawTime dt); void Enemy_update(void* context, Raw...