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