12fd6cc2e7
* move libprint headers into libs headers folder accordingly * merge all shared folders sources into kits print, we might build later on a real print kit, propably also to access cups from an nicely API, atm static * move all shared headers into private print, also pr_server.h from interface * adjust build to work with the changed folder layout git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26570 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
462 B
C++
23 lines
462 B
C++
/*
|
|
* Exports.h
|
|
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef __EXPORTS_H
|
|
#define __EXPORTS_H
|
|
|
|
#include <BeBuild.h>
|
|
|
|
class BNode;
|
|
class BMessage;
|
|
class BFile;
|
|
|
|
extern "C" {
|
|
_EXPORT char *add_printer(char *printer_name);
|
|
_EXPORT BMessage *config_page(BNode *node, BMessage *msg);
|
|
_EXPORT BMessage *config_job(BNode *node, BMessage *msg);
|
|
_EXPORT BMessage *take_job(BFile *spool_file, BNode *node, BMessage *msg);
|
|
}
|
|
|
|
#endif // __EXPORTS_H
|