mirror of https://github.com/FreeRDP/FreeRDP
Moved headers to appropriate places
This commit is contained in:
parent
0435b5a65d
commit
150674f341
|
@ -54,7 +54,7 @@
|
|||
|
||||
#include <freerdp/client/cmdline.h>
|
||||
#include <freerdp/version.h>
|
||||
#include <freerdp/utils/smartcard_cli.h>
|
||||
#include <freerdp/client/utils/smartcard_cli.h>
|
||||
|
||||
#include "cmdline.h"
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
|
||||
#include <winpr/assert.h>
|
||||
|
||||
#include <freerdp/utils/smartcard_cli.h>
|
||||
#include "../../libfreerdp/core/smartcardlogon.h"
|
||||
#include <freerdp/client/utils/smartcard_cli.h>
|
||||
#include <freerdp/utils/smartcardlogon.h>
|
||||
|
||||
BOOL freerdp_smartcard_list(const rdpSettings* settings)
|
||||
{
|
||||
|
|
|
@ -42,9 +42,8 @@ typedef struct
|
|||
} SmartcardCertInfo;
|
||||
|
||||
FREERDP_API BOOL smartcard_enumerateCerts(const rdpSettings* settings, SmartcardCerts** scCert,
|
||||
DWORD* retCount);
|
||||
DWORD* retCount);
|
||||
FREERDP_API const SmartcardCertInfo* smartcard_getCertInfo(SmartcardCerts* scCerts, DWORD index);
|
||||
FREERDP_API void smartcardCerts_Free(SmartcardCerts* scCert);
|
||||
|
||||
|
||||
#endif /* LIBFREERDP_CORE_SMARTCARDLOGON_H */
|
|
@ -64,7 +64,6 @@ set(${MODULE_PREFIX}_SRCS
|
|||
nla.c
|
||||
nla.h
|
||||
smartcardlogon.c
|
||||
smartcardlogon.h
|
||||
tscredentials.c
|
||||
tscredentials.h
|
||||
nego.c
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
#include "nla.h"
|
||||
#include "utils.h"
|
||||
#include "tscredentials.h"
|
||||
#include "smartcardlogon.h"
|
||||
#include <freerdp/utils/smartcardlogon.h>
|
||||
|
||||
#define TAG FREERDP_TAG("core.nla")
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
#include <freerdp/log.h>
|
||||
|
||||
#include "smartcardlogon.h"
|
||||
#include <freerdp/utils/smartcardlogon.h>
|
||||
|
||||
#define TAG FREERDP_TAG("smartcardlogon")
|
||||
|
||||
|
|
Loading…
Reference in New Issue