forked from nanoframework/nf-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nanoHAL_ConfigurationManager_stubs.c
72 lines (56 loc) · 1.64 KB
/
nanoHAL_ConfigurationManager_stubs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
#include <nanoHAL_v2.h>
__nfweak void ConfigurationManager_Initialize(){};
__nfweak void *ConfigurationManager_FindNetworkConfigurationBlocks(uint32_t startAddress, uint32_t endAddress)
{
(void)startAddress;
(void)endAddress;
return NULL;
}
__nfweak void *ConfigurationManager_FindNetworkWireless80211ConfigurationBlocks(
uint32_t startAddress,
uint32_t endAddress)
{
(void)startAddress;
(void)endAddress;
return NULL;
}
__nfweak void *ConfigurationManager_FindX509CertificateConfigurationBlocks(uint32_t startAddress, uint32_t endAddress)
{
(void)startAddress;
(void)endAddress;
return NULL;
}
__nfweak HAL_Configuration_Wireless80211 *ConfigurationManager_GetWirelessConfigurationFromId(uint32_t configurationId)
{
(void)configurationId;
return NULL;
}
__nfweak HAL_Configuration_WirelessAP *ConfigurationManager_GetWirelessAPConfigurationFromId(uint32_t configurationId)
{
(void)configurationId;
return NULL;
}
__nfweak HAL_Configuration_X509CaRootBundle *ConfigurationManager_GetCertificateStore()
{
return NULL;
}
__nfweak HAL_Configuration_X509DeviceCertificate *ConfigurationManager_GetDeviceCertificate()
{
return NULL;
}
__nfweak bool ConfigurationManager_CheckExistingConfigurationBlock(
void *existingConfigBlock,
void *newConfigBlock,
uint32_t existingConfigBlockSize,
uint32_t newConfigBlockSize)
{
(void)existingConfigBlock;
(void)newConfigBlock;
(void)existingConfigBlockSize;
(void)newConfigBlockSize;
return false;
}