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.

os.h 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* Copyright (C) 2010 TightVNC Team. All Rights Reserved.
  2. * Copyright 2021-2023 Pierre Ossman for Cendio AB
  3. *
  4. * This is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This software is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this software; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  17. * USA.
  18. */
  19. #ifndef OS_OS_H
  20. #define OS_OS_H
  21. namespace os {
  22. /*
  23. * Get VNC home directory ($HOME/.vnc or %APPDATA%/vnc/).
  24. * If HOME environment variable is set then it is used.
  25. * Otherwise home directory is obtained via getpwuid function.
  26. *
  27. * Returns NULL on failure.
  28. */
  29. const char* getvnchomedir();
  30. /*
  31. * Get user home directory.
  32. * If HOME environment variable is set then it is used.
  33. * Otherwise home directory is obtained via getpwuid function.
  34. *
  35. * Returns NULL on failure.
  36. */
  37. const char* getuserhomedir();
  38. }
  39. #endif /* OS_OS_H */