* Renamed files, classes and constants from

PrintServerAddOn to PrintAddOnServer.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39358 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Pfeiffer
2010-11-08 18:43:55 +00:00
parent 112cf45c66
commit 9b07d9f0fe
9 changed files with 73 additions and 73 deletions
@@ -5,8 +5,8 @@
* Authors:
* Michael Pfeiffer
*/
#ifndef PRINT_SERVER_ADD_ON_H
#define PRINT_SERVER_ADD_ON_H
#ifndef PRINT_ADD_ON_SERVER_H
#define PRINT_ADD_ON_SERVER_H
#include <Directory.h>
@@ -18,11 +18,11 @@
#include <SupportDefs.h>
class PrintServerAddOn
class PrintAddOnServer
{
public:
PrintServerAddOn(const char* driver);
virtual ~PrintServerAddOn();
PrintAddOnServer(const char* driver);
virtual ~PrintAddOnServer();
status_t AddPrinter(const char* spoolFolderName);
status_t ConfigPage(BDirectory* spoolFolder,
@@ -5,12 +5,12 @@
* Authors:
* Michael Pfeiffer
*/
#ifndef PRINT_SERVER_ADD_ON_PROTOCOL_H
#define PRINT_SERVER_ADD_ON_PROTOCOL_H
#ifndef PRINT_ADD_ON_SERVER_PROTOCOL_H
#define PRINT_ADD_ON_SERVER_PROTOCOL_H
extern const char* kPrintServerAddOnApplicationSignature;
extern const char* kPrintAddOnServerApplicationSignature;
extern const char* kPrintServerAddOnStatusAttribute;
extern const char* kPrintAddOnServerStatusAttribute;
extern const char* kPrinterDriverAttribute;
extern const char* kPrinterNameAttribute;
extern const char* kPrinterFolderAttribute;
@@ -25,7 +25,7 @@ enum {
// BString kPrinterDriverAttribute
// BString kPrinterNameAttribute
// Reply:
// int32 kPrintServerAddOnStatusAttribute
// int32 kPrintAddOnServerStatusAttribute
kMessageConfigPage = 'PScp',
// Request:
@@ -33,7 +33,7 @@ enum {
// BString kPrinterFolderAttribute
// BMessage kPrintSettingsAttribute
// Reply:
// int32 kPrintServerAddOnStatusAttribute
// int32 kPrintAddOnServerStatusAttribute
// BMessage kPrintSettingsAttribute (if status is B_OK)
kMessageConfigJob = 'PScj',
@@ -42,7 +42,7 @@ enum {
// BString kPrinterFolderAttribute
// BMessage kPrintSettingsAttribute
// Reply:
// int32 kPrintServerAddOnStatusAttribute
// int32 kPrintAddOnServerStatusAttribute
// BMessage kPrintSettingsAttribute (if status is B_OK)
kMessageDefaultSettings = 'PSds',
@@ -50,7 +50,7 @@ enum {
// BString kPrinterDriverAttribute
// BString kPrinterFolderAttribute
// Reply:
// int32 kPrintServerAddOnStatusAttribute
// int32 kPrintAddOnServerStatusAttribute
// BMessage kPrintSettingsAttribute (if status is B_OK)
kMessageTakeJob = 'PStj',
@@ -59,7 +59,7 @@ enum {
// BString kPrintJobFileAttribute
// BString kPrinterFolderAttribute
// Reply:
// int32 kPrintServerAddOnStatusAttribute
// int32 kPrintAddOnServerStatusAttribute
};
#endif