You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
374 B
28 lines
374 B
#ifndef KMSTARTUP |
|
#define KMSTARTUP |
|
|
|
// Author: Don Sanders <sanders@kde.org> |
|
// License GPL |
|
|
|
extern "C" { |
|
|
|
void kmsetSignalHandler(void (*handler)(int)); |
|
void kmsignalHandler(int sigId); |
|
void kmcrashHandler(int sigId); |
|
|
|
} |
|
|
|
namespace KMail |
|
{ |
|
void checkConfigUpdates(); |
|
void lockOrDie(); |
|
void insertLibraryCataloguesAndIcons(); |
|
void cleanup(); |
|
} |
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|