forked from NTDLS/NSWFL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSWFL_InsecureInterface.Cpp
51 lines (40 loc) · 1.89 KB
/
NSWFL_InsecureInterface.Cpp
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
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright © NetworkDLS 2023, All rights reserved
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef _NSWFL_INSECUREINTERFACE_CPP_
#define _NSWFL_INSECUREINTERFACE_CPP_
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include "NSWFL.H"
#ifdef _USE_GLOBAL_MEMPOOL
extern NSWFL::Memory::MemoryPool *pMem; //pMem must be defined and initalized elsewhere.
#endif
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
namespace NSWFL {
namespace InsecureInterface {
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifdef NSWFL_USE_ALT_SECURE_PROCS
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool fopen_s_Ex(FILE **Target, const char *sFile, const char * Mode)
{
return((*Target = fopen(sFile, Mode)) == NULL);
}
short _fcvt_s(char* buffer, size_t sizeInBytes, double value, int count, int *dec, int *sign)
{
char *sCVT = _fcvt(value, count, dec, sign);
if (sCVT != NULL)
{
strcpy(buffer, sCVT);
return true;
}
return false;
}
#endif
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
} //namespace::InsecureInterface
} //namespace::NSWFL
#endif