2 * Header file for commands-windows-ssh.c
4 * Copyright Schweitzer Engineering Laboratories. 2024
7 * Aidan Leuck <aidan_leuck@selinc.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include <glib/gstrfuncs.h>
15 typedef struct WindowsUserInfo
{
17 char *authorizedKeyFile
;
23 typedef WindowsUserInfo
*PWindowsUserInfo
;
25 void free_userInfo(PWindowsUserInfo info
);
26 G_DEFINE_AUTO_CLEANUP_FREE_FUNC(PWindowsUserInfo
, free_userInfo
, NULL
);