ASIO to JACK driver for WINE
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.

33 lines
1.4KB

  1. /*
  2. * Copyright (C) 2007 Peter L Jones
  3. * Ugh, can you really copyright something this trivial?
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  18. */
  19. static const char* ENVVAR_INPUTS = "_INPUTS";
  20. static const char* ENVVAR_OUTPUTS = "_OUTPUTS";
  21. static const char* ENVVAR_INPORTNAMEPREFIX = "INPORTNAME";
  22. static const char* ENVVAR_OUTPORTNAMEPREFIX = "OUTPORTNAME";
  23. static const char* ENVVAR_INMAP = "_INPORT";
  24. static const char* ENVVAR_OUTMAP = "_OUTPORT";
  25. static const char* DEFAULT_PREFIX = "ASIO";
  26. static const char* DEFAULT_INPORT = "input_";
  27. static const char* DEFAULT_OUTPORT = "output_";
  28. static const int DEFAULT_NUMINPUTS = 2;
  29. static const int DEFAULT_NUMOUTPUTS = 2;
  30. static const char* USERCFG = ".wineasiocfg";
  31. static const char* SITECFG = "/etc/default/wineasiocfg";