ui.h 448 B

123456789101112
  1. // SPDX-License-Identifier: GPL-3.0-or-later
  2. #ifndef NETDATA_CLAIM_WINDOW_H_
  3. # define NETDATA_CLAIM_WINDOW_H_ 1
  4. // https://learn.microsoft.com/en-us/troubleshoot/windows-client/shell-experience/command-line-string-limitation
  5. // https://sourceforge.net/p/mingw/mailman/mingw-users/thread/4C8FD4EB.4050503@xs4all.nl/
  6. #define WINDOWS_MAX_PATH 8191
  7. int netdata_claim_window_loop(HINSTANCE hInstance, int nCmdShow);
  8. #endif //NETDATA_CLAIM_WINDOW_H_