forked from NTDLS/NSWFL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSWFL_Memory.H
28 lines (25 loc) · 1.35 KB
/
NSWFL_Memory.H
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
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 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_MEMORY_H_
#define _NSWFL_MEMORY_H_
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
namespace NSWFL {
namespace Memory {
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void *ClearMem(void *vBuffer, int iBufSz);
void *MemCopy(void *vTarget, void *vSource, int iLen);
int MemCopyLong(char *sOutBuf, long lIn);
int MemCopyInt(char *sOutBuf, int iIn);
void NukeMem(char *sBuf);
void NukeMem(void *pBuf, size_t iBufSz);
void *MemDup(const void* d, size_t s);
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
} //namespace::Memory
} //namespace::NSWFL
#endif