diff options
Diffstat (limited to 'src/claim/ui.h')
-rw-r--r-- | src/claim/ui.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/claim/ui.h b/src/claim/ui.h new file mode 100644 index 000000000..583ed1cda --- /dev/null +++ b/src/claim/ui.h @@ -0,0 +1,12 @@ +// SPDX-License-Identifier: GPL-3.0-or-later + +#ifndef NETDATA_CLAIM_WINDOW_H_ +# define NETDATA_CLAIM_WINDOW_H_ 1 + +// https://learn.microsoft.com/en-us/troubleshoot/windows-client/shell-experience/command-line-string-limitation +// https://sourceforge.net/p/mingw/mailman/mingw-users/thread/4C8FD4EB.4050503@xs4all.nl/ +#define WINDOWS_MAX_PATH 8191 + +int netdata_claim_window_loop(HINSTANCE hInstance, int nCmdShow); + +#endif //NETDATA_CLAIM_WINDOW_H_ |