2440d2c1cf
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2091 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
484 B
C++
23 lines
484 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
|