2022-09-28 17:28:58 +03:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
*
|
|
|
|
* Copyright 2022 Stefan Koell
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-09-28 09:20:24 +03:00
|
|
|
#ifndef FREERDP_CLIENT_WIN_DEFAULTS_H
|
|
|
|
#define FREERDP_CLIENT_WIN_DEFAULTS_H
|
|
|
|
|
2024-04-03 12:39:52 +03:00
|
|
|
#include <winpr/wtypes.h>
|
|
|
|
#include <freerdp/api.h>
|
2022-09-28 09:20:24 +03:00
|
|
|
#include <freerdp/settings.h>
|
|
|
|
|
2024-04-03 12:39:52 +03:00
|
|
|
FREERDP_API void WINAPI AddDefaultSettings(_Inout_ rdpSettings* settings);
|
2022-09-28 09:20:24 +03:00
|
|
|
|
|
|
|
#endif /* FREERDP_CLIENT_WIN_DEFAULTS_H */
|