The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

36 lines
1.3KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE 6 technical preview.
  4. Copyright (c) 2020 - Raw Material Software Limited
  5. You may use this code under the terms of the GPL v3
  6. (see www.gnu.org/licenses).
  7. For this technical preview, this file is not subject to commercial licensing.
  8. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  9. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  10. DISCLAIMED.
  11. ==============================================================================
  12. */
  13. #pragma once
  14. //==============================================================================
  15. // These functions are called by our child process on startup, to launch
  16. // the compilation server
  17. String createCommandLineForLaunchingServer (const String& pipeName,
  18. const String& projectUID,
  19. const File& cacheLocation);
  20. void* createClangServer (const String& commandLine);
  21. void destroyClangServer (void*);
  22. // Called if our child process is asked to shutdown by the user, so it can pass
  23. // that shutdown event up to the parent (IDE) process..
  24. void sendQuitMessageToIDE (void*);