OSXUtils.h 294 B

123456789101112131415
  1. #ifndef OSXUTILS_H
  2. #define OSXUTILS_H
  3. #include <QString>
  4. #include <ApplicationServices/ApplicationServices.h>
  5. namespace OSXUtils
  6. {
  7. QString ComputerName();
  8. OSStatus SendAppleEventToSystemProcess(AEEventID eventToSendID);
  9. void SetCursorVisible(bool visible);
  10. };
  11. #endif /* OSXUTILS_H */