added copyright headers

This commit is contained in:
Erik Faye-Lund 2008-02-17 13:30:38 +00:00
parent 366508c228
commit 8f34baa39c
18 changed files with 76 additions and 16 deletions

11
LICENSE.TXT Normal file
View 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.

View File

@ -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

View 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

View File

@ -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"

View File

@ -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"

View File

@ -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>

View File

@ -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"

View File

@ -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>

View File

@ -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()

View File

@ -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;

View File

@ -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>

View File

@ -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

View File

@ -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"

View File

@ -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"

View File

@ -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>

View File

@ -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

View File

@ -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>

View File

@ -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