mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:17 +00:00
This commit was created with scripts/clean-includes: ./scripts/clean-includes '--git' 'all' '--all' and manually edited to remove one change to hw/virtio/cbor-helpers.c. All these changes are header files that include osdep.h or some system header that osdep.h pulls in; they don't need to do this. All .c should include qemu/osdep.h first. The script performs three related cleanups: * Ensure .c files include qemu/osdep.h first. * Including it in a .h is redundant, since the .c already includes it. Drop such inclusions. * Likewise, including headers qemu/osdep.h includes is redundant. Drop these, too. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20260116125830.926296-5-peter.maydell@linaro.org
26 lines
643 B
C
26 lines
643 B
C
/*
|
|
* Header file for commands-windows-ssh.c
|
|
*
|
|
* Copyright Schweitzer Engineering Laboratories. 2024
|
|
*
|
|
* Authors:
|
|
* Aidan Leuck <aidan_leuck@selinc.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#include <glib/gstrfuncs.h>
|
|
typedef struct WindowsUserInfo {
|
|
char *sshDirectory;
|
|
char *authorizedKeyFile;
|
|
char *username;
|
|
char *SSID;
|
|
bool isAdmin;
|
|
} WindowsUserInfo;
|
|
|
|
typedef WindowsUserInfo *PWindowsUserInfo;
|
|
|
|
void free_userInfo(PWindowsUserInfo info);
|
|
G_DEFINE_AUTO_CLEANUP_FREE_FUNC(PWindowsUserInfo, free_userInfo, NULL);
|