[PRINTING] [SKIPLIST] Use the new header with SPDX license identifier and relicense the entire Printing Stack as well as its Skiplist dependency under GPL-2.0+

Previously, the Printing Stack was a mix of GPLed and LGPLed code. Having everything under GPL-2.0+ makes things consistent and allows me to import code from most Open Source licenses.
Given that the Printing Stack components are exchangeable with their Windows counterparts and implement documented interfaces, this license change doesn't impose any additional restrictions on dependent components (like printer drivers).

svn path=/trunk/; revision=75988
This commit is contained in:
Colin Finck 2017-09-29 17:18:19 +00:00
parent 57d74df773
commit 154f1aaacd
62 changed files with 125 additions and 125 deletions

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: Skiplist implementation for the ReactOS Project * PROJECT: Skiplist implementation for the ReactOS Project
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: All implemented functions operating on the Skiplist * PURPOSE: All implemented functions operating on the Skiplist
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include <intrin.h> #include <intrin.h>

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: Skiplist implementation for the ReactOS Project * PROJECT: Skiplist implementation for the ReactOS Project
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Interfaces for the Skiplist * PURPOSE: Interfaces for the Skiplist
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#ifndef _REACTOS_SKIPLIST_H #ifndef _REACTOS_SKIPLIST_H

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: Skiplist implementation for the ReactOS Project * PROJECT: Skiplist implementation for the ReactOS Project
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: A simple program for testing the Skiplist implementation * PURPOSE: A simple program for testing the Skiplist implementation
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include <windows.h> #include <windows.h>

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to switching between security contexts * PURPOSE: Functions related to switching between security contexts
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions for managing print jobs * PURPOSE: Functions for managing print jobs
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Main functions * PURPOSE: Main functions
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions for allocating and freeing memory * PURPOSE: Functions for allocating and freeing memory
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Monitors * PURPOSE: Functions related to Print Monitors
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Ports of the Print Monitors * PURPOSE: Functions related to Ports of the Print Monitors
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Precompiled Header for all source files * PURPOSE: Precompiled Header for all source files
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#ifndef _PRECOMP_H #ifndef _PRECOMP_H

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printer Configuration Data * PURPOSE: Functions related to Printer Configuration Data
* COPYRIGHT: Copyright 2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printers and printing * PURPOSE: Functions related to Printers and printing
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Processors * PURPOSE: Functions related to Print Processors
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler Router * PROJECT: ReactOS Spooler Router
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Miscellaneous tool functions * PURPOSE: Miscellaneous tool functions
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Forms * PURPOSE: Functions related to Forms
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Various initialization functions * PURPOSE: Various initialization functions
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions for managing print jobs * PURPOSE: Functions for managing print jobs
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Main functions * PURPOSE: Main functions
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Monitors * PURPOSE: Functions related to Print Monitors
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printer Configuration Data * PURPOSE: Functions related to Printer Configuration Data
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Ports * PURPOSE: Functions related to Ports
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Precompiled Header for all source files * PURPOSE: Precompiled Header for all source files
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#ifndef _PRECOMP_H #ifndef _PRECOMP_H

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printer Configuration Data * PURPOSE: Functions related to Printer Configuration Data
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printer Drivers * PURPOSE: Functions related to Printer Drivers
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printers and printing * PURPOSE: Functions related to Printers and printing
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Processors * PURPOSE: Functions related to Print Processors
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Providers * PURPOSE: Functions related to Print Providers
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: RPC Server Thread * PURPOSE: RPC Server Thread
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Unimplemented RPC calls * PURPOSE: Unimplemented RPC calls
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler Service * PROJECT: ReactOS Print Spooler Service
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Xcv* functions * PURPOSE: Xcv* functions
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions giving information about DEVMODE structures * PURPOSE: Functions giving information about DEVMODE structures
* COPYRIGHT: Copyright 2016 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2016 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions for managing print jobs * PURPOSE: Functions for managing print jobs
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Main functions * PURPOSE: Main functions
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Monitors * PURPOSE: Functions related to Print Monitors
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Ports * PURPOSE: Functions related to Ports
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Print Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Precompiled Header for all source files * PURPOSE: Precompiled Header for all source files
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#ifndef _PRECOMP_H #ifndef _PRECOMP_H

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printer Configuration Data * PURPOSE: Functions related to Printer Configuration Data
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printer Drivers * PURPOSE: Functions related to Printer Drivers
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printers and printing * PURPOSE: Functions related to Printers and printing
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Processors * PURPOSE: Functions related to Print Processors
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Spooler API * PROJECT: ReactOS Spooler API
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Providers * PURPOSE: Functions related to Print Providers
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Printing Include files * PROJECT: ReactOS Printing Include files
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Provide a constant for the current Printing Processor Environment based on the architecture * PURPOSE: Provide a constant for the current Printing Processor Environment based on the architecture
* COPYRIGHT: Copyright 2016 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2016 Colin Finck (colin@reactos.org)
*/ */
#ifndef _REACTOS_PRTPROCENV_H #ifndef _REACTOS_PRTPROCENV_H

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Printing Include files * PROJECT: ReactOS Printing Include files
* LICENSE: GNU LGPLv2 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Undocumented APIs of the Spooler Router "spoolss.dll" and internally shared interfaces * PURPOSE: Undocumented APIs of the Spooler Router "spoolss.dll" and internally shared interfaces
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#ifndef _REACTOS_SPOOLSS_H #ifndef _REACTOS_SPOOLSS_H

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Port Monitor * PROJECT: ReactOS Local Port Monitor
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Main functions * PURPOSE: Main functions
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Port Monitor * PROJECT: ReactOS Local Port Monitor
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to ports * PURPOSE: Functions related to ports
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Port Monitor * PROJECT: ReactOS Local Port Monitor
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Precompiled Header for all source files * PURPOSE: Precompiled Header for all source files
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#ifndef _PRECOMP_H #ifndef _PRECOMP_H

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Port Monitor * PROJECT: ReactOS Local Port Monitor
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Resource IDs * PURPOSE: Resource IDs
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#pragma once #pragma once

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Port Monitor * PROJECT: ReactOS Local Port Monitor
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Various support functions shared by multiple files * PURPOSE: Various support functions shared by multiple files
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Port Monitor * PROJECT: ReactOS Local Port Monitor
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Implementation of Xcv* and support functions * PURPOSE: Implementation of Xcv* and support functions
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Standard Print Processor * PROJECT: ReactOS Standard Print Processor
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Main functions * PURPOSE: Main functions
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Standard Print Processor * PROJECT: ReactOS Standard Print Processor
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Precompiled Header for all source files * PURPOSE: Precompiled Header for all source files
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#ifndef _PRECOMP_H #ifndef _PRECOMP_H

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Standard Print Processor * PROJECT: ReactOS Standard Print Processor
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Printing a job with RAW datatype * PURPOSE: Printing a job with RAW datatype
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions for managing print jobs * PURPOSE: Functions for managing print jobs
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Main functions * PURPOSE: Main functions
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Monitors * PURPOSE: Functions related to Print Monitors
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Ports of the Print Monitors * PURPOSE: Functions related to Ports of the Print Monitors
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Precompiled Header for all source files * PURPOSE: Precompiled Header for all source files
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#ifndef _PRECOMP_H #ifndef _PRECOMP_H

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printer Configuration Data * PURPOSE: Functions related to Printer Configuration Data
* COPYRIGHT: Copyright 2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Printers and printing * PURPOSE: Functions related to Printers and printing
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Implementation of the Thread that actually performs the printing process * PURPOSE: Implementation of the Thread that actually performs the printing process
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Print Processors * PURPOSE: Functions related to Print Processors
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"

View file

@ -1,8 +1,8 @@
/* /*
* PROJECT: ReactOS Local Spooler * PROJECT: ReactOS Local Spooler
* LICENSE: GNU LGPL v2.1 or any later version as published by the Free Software Foundation * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Various tools * PURPOSE: Various tools
* COPYRIGHT: Copyright 2015-2017 Colin Finck <colin@reactos.org> * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
*/ */
#include "precomp.h" #include "precomp.h"