4fde28dad8
We moved initializeSalmanoff and shutdownSalmanoff into salmanoff.cpp. Now we also invoke shutdownSalmanoff when exiting to destroy subsystems and components gracefully. This fixes the segfault that was thrown on every program exit when xcbWindow had captured a window.
12 lines
166 B
C++
12 lines
166 B
C++
#ifndef _SALMANOFF_H
|
|
#define _SALMANOFF_H
|
|
|
|
namespace smo {
|
|
|
|
void initializeSalmanoff(void);
|
|
void shutdownSalmanoff(void);
|
|
|
|
} // namespace smo
|
|
|
|
#endif // _SALMANOFF_H
|