added copyright headers
This commit is contained in:
parent
366508c228
commit
8f34baa39c
11
LICENSE.TXT
Normal file
11
LICENSE.TXT
Normal file
@ -0,0 +1,11 @@
|
||||
Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
|
||||
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
|
||||
|
||||
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
|
||||
|
||||
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
|
||||
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
@ -1,8 +1,5 @@
|
||||
// stdafx.cpp : source file that includes just the standard includes
|
||||
// synctracker2.pch will be the pre-compiled header
|
||||
// stdafx.obj will contain the pre-compiled type information
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: reference any additional headers you need in STDAFX.H
|
||||
// and not in this file
|
||||
|
||||
@ -1,8 +1,6 @@
|
||||
// stdafx.h : include file for standard system include files,
|
||||
// or project specific include files that are used frequently, but
|
||||
// are changed infrequently
|
||||
//
|
||||
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <winsock2.h>
|
||||
@ -13,6 +11,3 @@
|
||||
#include <tchar.h>
|
||||
#include <assert.h>
|
||||
#define ASSERT(x) assert(x)
|
||||
|
||||
|
||||
// TODO: reference additional headers your program requires here
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../sync/network.h"
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
// synctracker2.cpp : Defines the entry point for the console application.
|
||||
//
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#include <afxres.h>
|
||||
#include "resource.h"
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#include "trackview.h"
|
||||
#include <vector>
|
||||
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "synceditdata.h"
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
#include <d3d9.h>
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h> // needed for Sleep()
|
||||
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#include "data.h"
|
||||
|
||||
using namespace sync;
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#ifndef SYNC_H
|
||||
#define SYNC_H
|
||||
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#include "device.h"
|
||||
#include "data.h"
|
||||
#include "network.h"
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#include "device.h"
|
||||
#include "data.h"
|
||||
#include "network.h"
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#include "network.h"
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#ifndef NETWORK_H
|
||||
#define NETWORK_H
|
||||
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#define _USE_MATH_DEFINES
|
||||
#include <cmath>
|
||||
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
||||
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
|
||||
*/
|
||||
|
||||
#ifndef SYNC_TRACK_H
|
||||
#define SYNC_TRACK_H
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user