Update copyright noteices, etc.

This commit is contained in:
cnlohr 2015-07-29 01:56:18 -04:00
parent 95c0c4837b
commit bba28c688f
55 changed files with 201 additions and 41 deletions

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "outdrivers.h"
#include "notefinder.h"
#include <stdio.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "outdrivers.h"
#include "notefinder.h"
#include <stdio.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "outdrivers.h"
#include "notefinder.h"
#include <stdio.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
//XXX This needs to be re-worked to only output LEDs so DisplayArray can take it.
//XXX CONSIDER DUMPING

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "outdrivers.h"
#include "notefinder.h"
#include <stdio.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "outdrivers.h"
#include "notefinder.h"
#include <stdio.h>

View file

@ -1,5 +1,8 @@
/*
Copyright (c) 2010, 2011 Charles Lohr
Copyright (c) 2010, 2011, 2015 <>< Charles Lohr
This file may be licensed under the NewBSD License OR The license found
here:
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the

View file

@ -1,5 +1,8 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
//XXX TODO Figure out why it STILL fails when going around a loop
#include "outdrivers.h"
#include "notefinder.h"
#include <stdio.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
//Really basic driver, that just selects the most prominent color and washes all the LEDs with that.
#include "outdrivers.h"

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "outdrivers.h"
#include "notefinder.h"
#include <stdio.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "outdrivers.h"
#include <stdio.h>
#include <stdlib.h>

View file

@ -1,3 +1,9 @@
//Generic C Hash table thing.
//WARNING: There is a known bug somewhere in the remove entry thing.
//I never found it...
//
// Copyright 2015 <>< Charles Lohr, under the NewBSD or MIT/x11 License.
#include "chash.h"
#include <stdlib.h>
#include <string.h>

View file

@ -1,3 +1,9 @@
//Generic C Hash table thing.
//WARNING: There is a known bug somewhere in the remove entry thing.
//I never found it...
//
// Copyright 2015 <>< Charles Lohr, under the NewBSD or MIT/x11 License.
#ifndef _CHASH_H
#define _CHASH_H

View file

@ -1,3 +1,7 @@
//Copyright (Public Domain) 2015 <>< Charles Lohr, under the NewBSD License.
//This file may be used in whole or part in any way for any purpose by anyone
//without restriction.
#include "color.h"
#include <math.h>

View file

@ -1,3 +1,7 @@
//Copyright (Public Domain) 2015 <>< Charles Lohr, under the NewBSD License.
//This file may be used in whole or part in any way for any purpose by anyone
//without restriction.
#ifndef _COLOR_H
#define _COLOR_H

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "decompose.h"
#include <stdio.h>
#include <math.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#ifndef _DECOMPOSE_H
#define _DECOMPOSE_H

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "dft.h"
#include <math.h>
#include <stdio.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#ifndef _DFT_H
#define _DFT_H

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "filter.h"
#include <math.h>
#include <string.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#ifndef _FILTER_H
#define _FILTER_H

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "hook.h"
struct KeyEvent

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#ifndef _KEYHOOK_H
#define _KEYHOOK_H

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include <ctype.h>
#include "color.h"
#include <math.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "notefinder.h"
#include "parameters.h"
#include <stdio.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#ifndef _NOTEFINDER_H
#define _NOTEFINDER_H

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the NewBSD OR MIT/x11 License.
#include "os_generic.h"

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the NewBSD or MIT/x11 License.
#ifndef _OS_GENERIC_H
#define _OS_GENERIC_H

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "outdrivers.h"
#include <string.h>
#include "parameters.h"

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
//Output drivers, used for outputting lights, etc... However, this technique
//may be used for unrelated-to-output plugins.

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "parameters.h"
#include "chash.h"
#include <string.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#ifndef _PARAMETERS_H
#define _PARAMETERS_H

View file

@ -1,3 +1,7 @@
//Copyright (Public Domain) 2015 <>< Charles Lohr, under the NewBSD License.
//This file may be used in whole or part in any way for any purpose by anyone
//without restriction.
#include "sort.h"
#include <string.h>
#include <stdio.h>

View file

@ -1,3 +1,7 @@
//Copyright (Public Domain) 2015 <>< Charles Lohr, under the NewBSD License.
//This file may be used in whole or part in any way for any purpose by anyone
//without restriction.
#ifndef _SORT_H
#define _SORT_H

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "sound.h"
#include <string.h>
#include <stdio.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#ifndef _SOUND_H
#define _SOUND_H

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "sound.h"
#include "os_generic.h"
#include "parameters.h"

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include "sound.h"
#include "os_generic.h"
#include <stdlib.h>

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
//This file is really rough. Full duplex doesn't seem to work hardly at all.

View file

@ -1,3 +1,5 @@
//Copyright 2015 <>< Charles Lohr under the ColorChord License.
#include <windows.h>
#include "parameters.h"
#include "sound.h"

View file

@ -1,3 +1,7 @@
//Copyright (Public Domain) 2015 <>< Charles Lohr, under the NewBSD License.
//This file may be used in whole or part in any way for any purpose by anyone
//without restriction.
#include "util.h"
#include <math.h>
#include <stdlib.h>

View file

@ -1,3 +1,7 @@
//Copyright (Public Domain) 2015 <>< Charles Lohr, under the NewBSD License.
//This file may be used in whole or part in any way for any purpose by anyone
//without restriction.
#ifndef _UTIL_H
#define _UTIL_H