repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
jxjgssylsg/SDHudViewProgram
SDHudViewProgram/SDHudView/SDHudView.h
// // SDHudView.h // Novo // // Created by Novo on 16/1/6. // Copyright © 2016年 Novo. All rights reserved. // #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> // 内容视图显示动画 typedef enum EnumSDHudViewContentAnimateStyle { EnumSDHudViewAnimateStyleImmedia, // 自然出现,默认 EnumSDHudViewAnimateStyle...
andrevalerio/ft_printf
ft_printf_negnum2.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_negnum2.c :+: :+: :+: ...
andrevalerio/ft_printf
ft_printf_negnum.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_negnum.c :+: :+: :+: ...
andrevalerio/ft_printf
ft_printf_utils1.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_utils1.c :+: :+: :+: ...
andrevalerio/ft_printf
ft_printf_string.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_string.c :+: :+: :+: ...
andrevalerio/ft_printf
ft_printf.h
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf.h :+: :+: :+: ...
andrevalerio/ft_printf
ft_printf_utils3.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_utils3.c :+: :+: :+: ...
andrevalerio/ft_printf
ft_printf_ptr.c
<gh_stars>0 /* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_ptr.c :+: ...
andrevalerio/ft_printf
ft_printf_num.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_num.c :+: :+: :+: ...
andrevalerio/ft_printf
ft_printf.c
<reponame>andrevalerio/ft_printf /* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf.c ...
andrevalerio/ft_printf
ft_printf_numtype.c
<reponame>andrevalerio/ft_printf /* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_numtype.c ...
andrevalerio/ft_printf
ft_printf_utils2.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_utils2.c :+: :+: :+: ...
andrevalerio/ft_printf
ft_printf_char.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_char.c :+: :+: :+: ...
andrevalerio/ft_printf
ft_printf_ux.c
<filename>ft_printf_ux.c /* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_printf_ux.c ...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/mvVoiceCBL/mvVoiceCBL.h
<filename>lib/Vivox/mvVoice/mvVoiceCBL/mvVoiceCBL.h // mvVoiceDLL.h #include <string> using namespace std; namespace mvVoiceCBL { class VoiceCBL { public: static __declspec(dllexport) std::string GetConnectorID(); static __declspec(dllexport) std::string GetAccountID(); static __declspec(dllexport) std::str...
AustralianDisabilityLimited/MultiversePlatform
lib/BridgeInterface/BridgeInterface/Thread.h
#pragma once class __declspec(dllexport) Thread { private: HANDLE thread_handle; unsigned int thread_id; public: Thread(); virtual ~Thread(); void Start(); void Join(); bool Join(int milliseconds); void Suspend(); void Resume(); // void Interrupt(); static void Sleep(int milliseconds); void Dispose(); ...
AustralianDisabilityLimited/MultiversePlatform
lib/BridgeInterface/BridgeInterface/Session.h
#pragma once #include "Socket.h" #include "Message.h" #include "Thread.h" enum MessageCode { SUBSCRIBE = 0, UNSUBSCRIBE = 1, SUBSCRIBE_RESPONSE = 2, SERVER_MESSAGE = 3 }; enum MessageFilterType { TOPIC = 0, OID = 1, RESPONSE = 2 }; class __declspec(dllexport) MessageFilter { public: // Write our message to ...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/mvVoiceCBL/SessionState.h
/* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in writing from Vivox Inc. * * THE SOFTWARE IS PROVIDED "AS IS" AND VIVOX DISCLAIMS * ALL WARRANTIES WITH REGARD TO THIS SOFT...
AustralianDisabilityLimited/MultiversePlatform
tools/MayaExport/shared/include/OgreMayaCommon.h
/* ============================================================================ This source file is part of the Ogre-Maya Tools. Distributed as part of Ogre (Object-oriented Graphics Rendering Engine). Copyright (C) 2003 Fifty1 Software Inc., Bytelords This program is free software; you can redistribute it and/or modi...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/include/VxcEvents.h
<reponame>AustralianDisabilityLimited/MultiversePlatform /* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in writing from Vivox Inc. * * THE SOFTWARE IS PROVIDED "AS IS" AND V...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/vq/latticebuild.c
<filename>lib/vorbis/vq/latticebuild.c /******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * ...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/include/vivox-config.h
/* This file is generated by CMake, changes made to this file will be lost. If you wish to modify this file, edit "config.h.in" instead. */ #ifndef __VIVOX_CONFIG_H__ #define __VIVOX_CONFIG_H__ #define SUBVERSION_CHANGE 2341 #define SUBVERSION_DATE "2007-09-19 16:41:55 -0400 (Wed, 19 Sep 2007)" #define SDK_VERSI...
AustralianDisabilityLimited/MultiversePlatform
tools/MayaExport/shared/include/OgreMayaOptions.h
/* ============================================================================ This source file is part of the Ogre-Maya Tools. Distributed as part of Ogre (Object-oriented Graphics Rendering Engine). Copyright (C) 2003 Fifty1 Software Inc., Bytelords This program is free software; you can redistribute it and/or modi...
AustralianDisabilityLimited/MultiversePlatform
lib/BridgeInterface/BridgeInterface/Socket.h
<filename>lib/BridgeInterface/BridgeInterface/Socket.h #pragma once #include <winsock.h> class __declspec(dllexport) Socket { private: static int wsa_error; public: static int Startup(); static void Cleanup(); private: SOCKET sd; protected: unsigned int ResolveHostname(const char *hostname); public: Socket(); ...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/vq/bookutil.c
<gh_stars>10-100 /******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-ST...
AustralianDisabilityLimited/MultiversePlatform
lib/OggVorbisWrapper/OggVorbisWrapper.h
// OggVorbisWrapper.h #pragma once using namespace System; public value struct OggVorbisSoundData { public: int format; int size; int frequency; int error_code; }; public ref class OggVorbisWrapper { public: // Read the ogg data from the ogg file, and write the PCM data to the pcmStream static OggVorbisSoundDa...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/include/Vxc.h
<reponame>AustralianDisabilityLimited/MultiversePlatform /* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in writing from Vivox Inc. * * THE SOFTWARE IS PROVIDED "AS IS" AND V...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/lib/lsp.c
/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENS...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/include/VxcResponses.h
<reponame>AustralianDisabilityLimited/MultiversePlatform /* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in writing from Vivox Inc. * * THE SOFTWARE IS PROVIDED "AS IS" AND V...
AustralianDisabilityLimited/MultiversePlatform
lib/SpeedWind/PIDController.h
<filename>lib/SpeedWind/PIDController.h /////////////////////////////////////////////////////////////////////// // PIDContoller.h // // (c) 2002 IDV, Inc. // // This file contains a simple discrete PID contoller class. // // // *** INTERACTIVE DATA VISUALIZATION (IDV) PROPRIETARY INFORMATION *** // // This software i...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/lib/highlevel.h
/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENS...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/lib/psy.c
/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENS...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/mvVoiceCBL/ResponseManager.h
/* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in writing from Vivox Inc. * * THE SOFTWARE IS PROVIDED "AS IS" AND VIVOX DISCLAIMS * ALL WARRANTIES WITH REGARD TO THIS SOFT...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/lib/smallft.c
/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENS...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/lib/analysis.c
/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENS...
AustralianDisabilityLimited/MultiversePlatform
lib/SpeedWind/SpeedWindParser.h
<filename>lib/SpeedWind/SpeedWindParser.h /////////////////////////////////////////////////////////////////////// // SpeedWindParser.h // // (c) 2004 IDV, Inc. // // // *** INTERACTIVE DATA VISUALIZATION (IDV) PROPRIETARY INFORMATION *** // // This software is supplied under the terms of a license agreement or // non...
AustralianDisabilityLimited/MultiversePlatform
lib/BridgeInterface/BridgeInterface/Message.h
<filename>lib/BridgeInterface/BridgeInterface/Message.h #pragma once #include "MessageException.h" class __declspec(dllexport) Vector { public: Vector() { x = 0; y = 0; z = 0; } float x; float y; float z; }; class __declspec(dllexport) IntVector { public: IntVector() { x = 0; y = 0; z = 0; } int x; int y; in...
AustralianDisabilityLimited/MultiversePlatform
lib/SpeedTreeWrapper/SpeedTreeWrapper.h
// SpeedTreeWrapper.h #pragma once #using <mscorlib.dll> using namespace System; using System::Runtime::InteropServices::Marshal; #include "SpeedTreeRT.h" #include "SpeedWind.h" namespace Multiverse { public __value enum WindMethod { WindGPU, WindCPU, WindNone }; enum LodMethod { ...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/mvVoiceCLR/mvVoiceCLR.h
<reponame>AustralianDisabilityLimited/MultiversePlatform // mvVoiceCLR.h #pragma once using namespace System; namespace mvVoiceCLR { public ref class VoiceCLR { public: static System::String^ GetConnectorID(); static System::String^ GetAccountID(); static System::String^ GetSessionID(); static int Init(S...
AustralianDisabilityLimited/MultiversePlatform
tools/ClientInterfaceEditor/MultiverseInterfaceStudioUI/VsDbgCmd.h
// PkgCmdID.h // Command IDs used in defining command bars // #ifndef _VSDBGCMD_H_INCLUDED #define _VSDBGCMD_H_INCLUDED #define MULTIPLE_WATCH_WINDOWS 1 /////////////////////////////////////////////////////////////////////////////// // Menu IDs // menus #define IDM_DEBUG_MENU 0x0401 #define IDM_...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/lib/modes/setup_22.h
<reponame>AustralianDisabilityLimited/MultiversePlatform<filename>lib/vorbis/lib/modes/setup_22.h /******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DIST...
AustralianDisabilityLimited/MultiversePlatform
tools/MayaExport/exporter/include/OgreMayaExporter.h
<filename>tools/MayaExport/exporter/include/OgreMayaExporter.h /* ============================================================================ This source file is part of the Ogre-Maya Tools. Distributed as part of Ogre (Object-oriented Graphics Rendering Engine). Copyright (C) 2003 Fifty1 Software Inc., Bytelords Thi...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/include/VxcExports.h
#ifndef __VXCEXPORTS_H #define __VXCEXPORTS_H #ifdef _MSC_VER // Note: this has been disabled so no-one tries to export C++ classes. //#ifdef BUILDING_VIVOXSDK // #define VIVOXSDK_DLLEXPORT __declspec(dllexport) //#else // #define VIVOXSDK_DLLEXPORT __declspec(dllimport) //#endif #define VIVOXSDK_DLLEX...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/include/vxplatform/VxcPlatform.h
<gh_stars>10-100 #ifndef __VXCPLATFORM_H #define __VXCPLATFORM_H #ifdef _MSC_VER #ifdef BUILDING_VIVOX_PLATFORM #define VXPLATFORM_DLLEXPORT __declspec(dllexport) #else #define VXPLATFORM_DLLEXPORT __declspec(dllimport) #endif #else #define VXPLATFORM_DLLEXPORT __attribute__ ((visibility("default"))) #...
AustralianDisabilityLimited/MultiversePlatform
tools/MayaExport/maya2ogre/include/OgreMayaScene.h
/* ============================================================================ This source file is part of the Ogre-Maya Tools. Distributed as part of Ogre (Object-oriented Graphics Rendering Engine). Copyright (C) 2003 Fifty1 Software Inc., Bytelords This program is free software; you can redistribute it and/or modi...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/mvVoiceCBL/StateManager.h
<gh_stars>10-100 /* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in writing from Vivox Inc. * * THE SOFTWARE IS PROVIDED "AS IS" AND VIVOX DISCLAIMS * ALL WARRANTIES WITH RE...
AustralianDisabilityLimited/MultiversePlatform
server/src/native/fadvise.c
#include <errno.h> /* errno */ #include <fcntl.h> /* fcntl, open */ #include <stdio.h> /* perror, fprintf, stderr, printf */ #include <stdlib.h> /* exit, calloc, free */ #include <string.h> /* strerror */ #include <sys/stat.h> /* stat, fstat */ #include <sys/types.h> /* size_t */ #include <unistd.h> /* sysconf, close...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/vq/vqgen.c
/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENS...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/mvVoiceCBL/SessionGroupState.h
<filename>lib/Vivox/mvVoice/mvVoiceCBL/SessionGroupState.h /* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in writing from Vivox Inc. * * THE SOFTWARE IS PROVIDED "AS IS" AND...
AustralianDisabilityLimited/MultiversePlatform
tools/MayaExport/shared/include/OgreMayaMesh.h
<reponame>AustralianDisabilityLimited/MultiversePlatform<gh_stars>10-100 /* ============================================================================ This source file is part of the Ogre-Maya Tools. Distributed as part of Ogre (Object-oriented Graphics Rendering Engine). Copyright (C) 2003 Fifty1 Software Inc., Byte...
AustralianDisabilityLimited/MultiversePlatform
lib/FastDXT/FastDXT/FastDXT.h
<gh_stars>10-100 // The following ifdef block is the standard way of creating macros which make exporting // from a DLL simpler. All files within this DLL are compiled with the FASTDXT_EXPORTS // symbol defined on the command line. this symbol should not be defined on any project // that uses this DLL. This way any ot...
AustralianDisabilityLimited/MultiversePlatform
lib/BridgeInterface/BridgeInterface/MessageException.h
<reponame>AustralianDisabilityLimited/MultiversePlatform<filename>lib/BridgeInterface/BridgeInterface/MessageException.h<gh_stars>10-100 #pragma once class __declspec(dllexport) MessageException { private: std::string msg; public: MessageException(const char *message) { msg = message; } MessageException(const Me...
AustralianDisabilityLimited/MultiversePlatform
tools/MayaExport/exporter/include/MayaGetFolder.h
/* ============================================================================ This source file is part of the Ogre-Maya Tools. Distributed as part of Ogre (Object-oriented Graphics Rendering Engine). Copyright (C) 2003 Fifty1 Software Inc., Bytelords This program is free software; you can redistribute it and/or modi...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/include/VxcErrors.h
<reponame>AustralianDisabilityLimited/MultiversePlatform #ifndef __VXCERRORS_H #define __VXCERRORS_H #include "VxcExports.h" /* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/vq/latticehint.c
<filename>lib/vorbis/vq/latticehint.c /******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * *...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/examples/seeking_example.c
/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENS...
AustralianDisabilityLimited/MultiversePlatform
tools/ethereal/packet-rudp-mv.c
<filename>tools/ethereal/packet-rudp-mv.c /* packet-rudp.c * Routines for Reliable UDP Protocol. * Copyright 2004, <NAME> <<EMAIL>> * * $Id: packet-rudp-mv.c 792 2005-02-17 20:05:09Z mccollum $ * * Ethereal - Network traffic analyzer * */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include <gmodule.h> #...
AustralianDisabilityLimited/MultiversePlatform
tools/MayaExport/shared/include/OgreMayaMaterial.h
<filename>tools/MayaExport/shared/include/OgreMayaMaterial.h /* ============================================================================ This source file is part of the Ogre-Maya Tools. Distributed as part of Ogre (Object-oriented Graphics Rendering Engine). Copyright (C) 2003 Fifty1 Software Inc., Bytelords This ...
AustralianDisabilityLimited/MultiversePlatform
lib/BridgeInterface/SampleBridgeClient/OA_Messages.h
#pragma once #include "MessageException.h" #include "Message.h" /** Add by JWT, should be the message that is called when hotloadbehaviors is called */ class HotLoadBehaviorMessage : public BaseMessage { public: static std::string GetMessageType(); virtual std::string GetTopic() const; virtual void ParseMessage(Me...
AustralianDisabilityLimited/MultiversePlatform
lib/SpeedWind/SpeedWind.h
/////////////////////////////////////////////////////////////////////// // SpeedWind.h // // (c) 2004 IDV, Inc. // // This class computes wind matrices, leaf angles, and leaf angle matrices // suitable for use with SpeedTreeRT. // // // *** INTERACTIVE DATA VISUALIZATION (IDV) PROPRIETARY INFORMATION *** // // This s...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/include/VxcRequests.h
<reponame>AustralianDisabilityLimited/MultiversePlatform<filename>lib/Vivox/mvVoice/include/VxcRequests.h /* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in writing from Vivox ...
AustralianDisabilityLimited/MultiversePlatform
tools/ClientInterfaceEditor/MultiverseInterfaceStudioUI/vsdebugguids.h
<reponame>AustralianDisabilityLimited/MultiversePlatform #define guidVSDebugPackage { 0xC9DD4A57, 0x47FB, 0x11D2, { 0x83, 0xE7, 0x00, 0xC0, 0x4F, 0x99, 0x02, 0xC1 } } #define guidVSDebugGroup { 0xC9DD4A58, 0x47FB, 0x11D2, { 0x83, 0xE7, 0x00, 0xC0, 0x4F, 0x99, 0x02, 0xC1 } } #define guidVSDebugCommand ...
AustralianDisabilityLimited/MultiversePlatform
tools/ethereal/packet-rudp.c
/* Packet-rudp.c * Routines for Reliable UDP Protocol. * Copyright 2004, <NAME> <<EMAIL>> * * $Id: packet-rudp.c 792 2005-02-17 20:05:09Z mccollum $ * * Ethereal - Network traffic analyzer * By <NAME> <<EMAIL>> * Copyright 1998 <NAME> * * Modified to use the Multiverse modified version of RDP over UDP * <NAM...
AustralianDisabilityLimited/MultiversePlatform
lib/Vivox/mvVoice/mvVoiceCBL/RequestManager.h
/* Copyright (c) 2007 by Vivox Inc. * * Permission to use, copy, modify or distribute this software in binary or source form * for any purpose is allowed only under explicit prior consent in writing from Vivox Inc. * * THE SOFTWARE IS PROVIDED "AS IS" AND VIVOX DISCLAIMS * ALL WARRANTIES WITH REGARD TO THIS SOFT...
AustralianDisabilityLimited/MultiversePlatform
lib/vorbis/lib/modes/setup_44.h
<reponame>AustralianDisabilityLimited/MultiversePlatform<filename>lib/vorbis/lib/modes/setup_44.h /******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DIST...
AustralianDisabilityLimited/MultiversePlatform
tools/MayaExport/shared/include/OgreMayaSkeleton.h
/* ============================================================================ This source file is part of the Ogre-Maya Tools. Distributed as part of Ogre (Object-oriented Graphics Rendering Engine). Copyright (C) 2003 Fifty1 Software Inc., Bytelords This program is free software; you can redistribute it and/or modi...
bigdata-memory/bdmem
src/main/native/common.c
<reponame>bigdata-memory/bdmem<gh_stars>1-10 /**************************************************************************************** Revise Date: 20 Apr. 2014 *****************************************************************************************/ #include <common.h> /********************************************...
bigdata-memory/bdmem
src/main/native/com_intel_bigdatamem_BigDataPMemAllocator.h
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class BigDataPMemAllocator*/ #include "common.h" #ifndef _Included_com_intel_bigmem_BigDataPMemAllocator #define _Included_com_intel_bigmem_BigDataPMemAllocator #ifdef __cplusplus extern "C" { #endif /* * Class: BigDataPMemAlloc...
bigdata-memory/bdmem
src/main/native/com_intel_bigdatamem_BigDataMemAllocator.h
/* DO NOT EDIT THIS FILE - it is machine generated */ #include <jni.h> /* Header for class com_intel_bigdatamem_BigDataMemAllocator*/ #include "common.h" #ifndef _Included_com_intel_bigmem_BigDataMemAllocator #define _Included_com_intel_bigmem_BigDataMemAllocator #ifdef __cplusplus extern "C" { #endif /* * Class: ...
zeebie-the-zebra/ofxFaceShift
example-osc/src/ofApp.h
#pragma once #include "ofMain.h" #include "ofxFaceShift.h" #include "ofxOsc.h" #include "RateTimer.h" class ofApp : public ofBaseApp{ public: void setup(); void update(); void draw(); void loadSettings(); void clearBundle(); template <class T> void addMessage(string address, T data); void sendBundle(); ...
zeebie-the-zebra/ofxFaceShift
example-blendshapes-noise/src/ofApp.h
<gh_stars>10-100 #pragma once #include "ofMain.h" #include "ofxFaceShift.h" class RandomFaceShift : public ofxFaceShift { public: void randomUpdate() { float t = ofGetElapsedTimef(); blendshapeWeights.clear(); unsigned int blendshapeCount = blendshapeNames.size(); ofSeedRandom(0); for(int i = 0; i < blends...
zeebie-the-zebra/ofxFaceShift
example-blendshapes/src/ofApp.h
<reponame>zeebie-the-zebra/ofxFaceShift #pragma once #include "ofMain.h" #include "ofxFaceShift.h" class ofApp : public ofBaseApp{ public: void setup(); void update(); void draw(); ofxFaceShift faceShift; ofEasyCam cam; ofLight light; };
zeebie-the-zebra/ofxFaceShift
example-osc/src/RateTimer.h
#pragma once #include "ofMain.h" class RateTimer { protected: float lastTick, averagePeriod, smoothing; bool secondTick; public: RateTimer() : smoothing(.9) { reset(); } void reset() { lastTick = 0, averagePeriod = 0, secondTick = false; } void setSmoothing(float smoothing) { this->smoothing = smoothing...
zeebie-the-zebra/ofxFaceShift
example-visualize/src/ofApp.h
#pragma once #include "ofMain.h" #include "ofxFaceShift.h" class ofApp : public ofBaseApp{ public: void setup(); void update(); void draw(); ofxFaceShift faceShift; ofEasyCam cam; };
mattvenn/wrapped_spell
caravel_spell_test/spell_test.c
<reponame>mattvenn/wrapped_spell<filename>caravel_spell_test/spell_test.c // SPDX-FileCopyrightText: © 2021 <NAME> <<EMAIL>> // SPDX-License-Identifier: MIT #include "verilog/dv/caravel/defs.h" #define PROJECT_ID 1 #define reg_spell_pc (*(volatile uint32_t*)0x30000000) #define reg_spell_sp ...
thewalkerdead/bitcoin-translation
ui.h
// Copyright (c) 2009-2010 <NAME> // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. DECLARE_EVENT_TYPE(wxEVT_UITHREADCALL, -1) extern wxLocale g_locale; void HandleCtrlA(wxKeyEvent& event); void UIThreadCall(boost::f...
InternationalColorConsortium/RefIccMAX
IccProfLib/IccProfLibVer.h
#ifndef ICCPROFLIBVER #define ICCPROFLIBVER "2.1.19" #endif
LZY1586/nnnn
DFRobot_Overweight.h
<gh_stars>1-10 /*! * @file DFRobot_OVERWEIGHT_Sensor.h * @brief 这是一个超重传感器 * @copyright Copyright (c) 2010 DFRobot Co.Ltd (http://www.dfrobot.com) * @licence The MIT License (MIT) * @author [LiuZhongYu][158625441<EMAIL>] * @version V1.0 * @date 2019-7-28 * @https://github.com/LZY1586/DFRobot_Sensor */ #...
irr/cl-labs
web/cffi/testlib.c
<reponame>irr/cl-labs #include <stdio.h> static char name[] = "ivan"; static int value = 100; void staticTest() { printf("staticTest: %s\n", name); } int dynamicTest(int v) { printf("dynamicTest: %d\n", value); value = v; printf("dynamicTest: %d\n", value); return value; } int main() { stat...
Baibhabswain/PLC
11.12.18/Assignment1r.c
#include "stdio.h" #include"stdlib.h" int main() { FILE *p; p = fopen("assin1.txt","r"); char a; if(p == NULL) { printf("File is empty\n"); exit(0); } a = getc(p); while(a!=EOF) { printf("%c",a); a = getc(p); } fclose(p); }
Baibhabswain/PLC
11.12.18/4.c
<gh_stars>1-10 #include"stdio.h" #include"stdlib.h" void main() { FILE *fp; char ch,file[10]; printf("Enter file name\n"); scanf("%s",file); fp=fopen(file,"w");//"a" if(fp==NULL) { printf("File could not open\n"); exit(0); } printf("Enter data (* to exit)\n"); while(1) { ch=getchar(); if(ch=='...
Baibhabswain/PLC
11.12.18/8.c
<filename>11.12.18/8.c<gh_stars>1-10 #include"stdio.h" int main() { FILE *f1,*f2; int p; f1 = fopen("abc.txt","r"); f2 = fopen("def.txt","w"); while(p = getc(f1)!=EOF) { fputc(p,f2); if(p == 32) { while(p = getc(f1) == 32) fputc(p,f2); } } fclose(f1); fclose(f2); getch(); ...
Baibhabswain/PLC
11.12.18/3.c
#include "stdio.h" #include "stdlib.h" int main() { char ch, src_file[20], tar_file[20]; FILE *src, *tar; printf("Enter name of file to copy\n"); gets(src_file); src = fopen(src_file, "r"); if( src == NULL ) { printf("Press any key to exit...\n"); exit(EXIT_FAILURE); } p...
Baibhabswain/PLC
18.12.18/1a.c
#include "stdio.h" #include "stdlib.h" int main () { char str[10]; FILE *fptr; int i; int num; char num2; i = 0; fptr = fopen("source.txt", "w"); if (fptr == NULL) { printf("ERROR Creating File!"); exit(0); } for (int i = 0; i < 10...
Baibhabswain/PLC
18.12.18/2.c
\\incomplete #include"stdio.h" int main() { int r, c, graph[V][V]; FILE *fp; fp = fopen("mat.txt","r"); for(r=0;r<V;r++) { for(c=0; c<V; c++) { if (!fscanf(fp, "%lf", &graph[r][c])) break; } } fclose(fp); }
Baibhabswain/PLC
18.12.18/2b/2b.c
<reponame>Baibhabswain/PLC #include "stdio.h" void main() { int row, col, i, j, value; FILE *source, *target; source = fopen("source.txt", "r"); fscanf(source, "%d %d %d", &row, &col, &value); int matrix[row][col]; for(i = 0; i < row; i++) for(j = 0; j < col; j++) matrix[i][j] = 0; while(!feof(source))...
Baibhabswain/PLC
11.12.18/5.c
#include "stdio.h" #include "stdlib.h" #include "string.h" struct person { int id; char fname[20]; char lname[20]; }; int main () { FILE *p; p = fopen ("assin2.txt", "w"); if (p == NULL) { fprintf(stderr, "\nError opend file\n"); exit (0); } st...
Baibhabswain/PLC
19.3.2019/Assignment 7/Q3/open.c
#include"stdio.h" main() { int n; printf("Please enter the value of n\n"); scanf("%d",&n); printf("hello world\n"); printf("The value is %d\n",n); }
Baibhabswain/PLC
11.12.18/Assignment1w.c
#include "stdio.h" #include"stdlib.h" int main() { FILE *p; p = fopen("assin1.txt","w"); char a; if(p == NULL) { printf("File is empty\n"); exit(0); } a = getchar(); while(a!="\n") { putc(a,p); a = getchar(); } fclose(p); }
Baibhabswain/PLC
26.3.2019/Additional Assignment 5/source.c
<reponame>Baibhabswain/PLC void main() { int a; float b; char c; //helo// int d; /* hllo */ int e = a + d; printf("your answer :- %d",e); }
Baibhabswain/PLC
18.12.18/1b.c
<gh_stars>1-10 #include "stdio.h" int main (void) { int n,i,a,V[i],ch,aux; FILE *f1, *f2; f1 = fopen("source.txt", "r"); f2 = fopen("target.txt", "w"); char line[1024]; n = 0; while( fgets(line,sizeof(line),f1) != NULL) n++; for (i=0; i<n; i++) fscanf(f1,"%d", &V[i])...
Baibhabswain/PLC
11.12.18/1.c
<gh_stars>1-10 #include"stdio.h" int main(int argc, char *argv[]) { FILE *fp; char ch; int nl,nt,nb,nc=0; fp=fopen("assin1.txt","r"); while(1) { ch=getc(fp); if(ch==EOF) break; nc++; if(ch==' ') nb++; if(ch=='\n') nl++; if(ch=='\t') nt++; } fclose(fp); printf("Total number of character ...
Baibhabswain/PLC
5.2.2019/program1.c
#include"stdio.h" #include"stdlib.h" int main() { int i = 0, line = 5,k; char ch[4]; size_t n = sizeof(ch)/sizeof(ch[0]); int count1 = 0; int count2 = 0; int flag = 0; FILE *myfile; myfile = fopen("test.txt","r"); if (myfile== NULL) { printf("can not open file \n"); ...
Baibhabswain/PLC
11.12.18/6.c
<gh_stars>1-10 #include"stdio.h" struct info { char name[30]; double salary; int id; }; int main() { FILE *f; *f = fopen("abc.txt","r"); if(*f == NULL) { printf("Can't open file (EMPTY)\n"); getch(); exit(0); } while(fread(&s,sizeof(s),1,f) == 1) { printf("Employee ID : %d",in...
knejadfard/jkshell
test/test_read_cmd.c
#include <stdio.h> #include <string.h> #include "parse_cmd.h" int main() { /********************************************************************************************* * _read_cmd *********************************************************************************************/ char command1[] = "ls -l...
knejadfard/jkshell
test/test_trim_trailing_whitespaces.c
<filename>test/test_trim_trailing_whitespaces.c #include <stdio.h> #include <string.h> #include "utility.h" int main() { char str[] = "this is a string "; char * trimmed = trim_trailing_whitespaces(str); if (strcmp(trimmed, "this is a string") == 0) { printf("trim_trailing_whitespaces test is suc...
knejadfard/jkshell
include/utility.h
#ifndef UTILITY_H #define UTILITY_H #include <stdlib.h> #include <string.h> #include <unistd.h> #include "constants.h" /* * Look for a character in a string and replace the * first occurence of it with the new character. * The lookup/replacement is limited to the specified * number of characters to avoid out-of-b...
knejadfard/jkshell
include/internal_commands.h
#ifndef INTERNAL_COMMANDS_H #define INTERNAL_COMMANDS_H #include "cmd.h" #include "commands/quit.h" #include "commands/cd.h" #include "commands/path.h" struct cmd internal_command[] = { {"quit", &quit_command}, {"cd", &cd_command}, {"path", &path_command} }; #endif
knejadfard/jkshell
include/parse_cmd.h
#ifndef PARSE_CMD_H #define PARSE_CMD_H #include <stdlib.h> #include <string.h> #include "constants.h" #include "cmd.h" #include "utility.h" void _read_cmd(struct cmd *, char *); /************************************************************************************************* * Parse a command into an array of str...
knejadfard/jkshell
include/cmd_interface.h
<reponame>knejadfard/jkshell #ifndef CMD_INTERFACE_H #define CMD_INTERFACE_H #include <stdio.h> #include <string.h> #include <stdlib.h> #include "constants.h" #include "cmd.h" #include "utility.h" #include "internal_commands.h" #include "external_executor.h" #include "parse_cmd.h" /**********************************...