1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-23 01:49:53 +03:00

src/Mayaqua/OS: remove unused functions

found by cppcheck

[src/Mayaqua/OS.c:493]: (style) The function 'OSDec32' is never used.
[src/Mayaqua/OS.c:373]: (style) The function 'OSDeleteDir' is never used.
[src/Mayaqua/OS.c:393]: (style) The function 'OSFileCreate' is never used.
[src/Mayaqua/OS.c:353]: (style) The function 'OSFileDelete' is never used.
[src/Mayaqua/OS.c:383]: (style) The function 'OSFileOpen' is never used.
[src/Mayaqua/OS.c:331]: (style) The function 'OSFileRename' is never used.
[src/Mayaqua/OS.c:487]: (style) The function 'OSInc32' is never used.
[src/Mayaqua/OS.c:363]: (style) The function 'OSMakeDir' is never used.
[src/Mayaqua/OS.c:541]: (style) The function 'OSResetEvent' is never used.
This commit is contained in:
Ilya Shipitsin 2018-11-04 00:41:12 +05:00
parent f219feda2c
commit 87702f0f7d
2 changed files with 0 additions and 51 deletions

View File

@ -328,10 +328,6 @@ UINT OSThreadId()
}
// Rename
bool OSFileRename(char *old_name, char *new_name)
{
return os->FileRename(old_name, new_name);
}
bool OSFileRenameW(wchar_t *old_name, wchar_t *new_name)
{
return os->FileRenameW(old_name, new_name);
@ -350,50 +346,30 @@ bool OSFileSeek(void *pData, UINT mode, int offset)
}
// Delete the file
bool OSFileDelete(char *name)
{
return os->FileDelete(name);
}
bool OSFileDeleteW(wchar_t *name)
{
return os->FileDeleteW(name);
}
// Create a directory
bool OSMakeDir(char *name)
{
return os->MakeDir(name);
}
bool OSMakeDirW(wchar_t *name)
{
return os->MakeDirW(name);
}
// Delete the directory
bool OSDeleteDir(char *name)
{
return os->DeleteDir(name);
}
bool OSDeleteDirW(wchar_t *name)
{
return os->DeleteDirW(name);
}
// Open the file
void *OSFileOpen(char *name, bool write_mode, bool read_lock)
{
return os->FileOpen(name, write_mode, read_lock);
}
void *OSFileOpenW(wchar_t *name, bool write_mode, bool read_lock)
{
return os->FileOpenW(name, write_mode, read_lock);
}
// Create a file
void *OSFileCreate(char *name)
{
return os->FileCreate(name);
}
void *OSFileCreateW(wchar_t *name)
{
return os->FileCreateW(name);
@ -483,18 +459,6 @@ void OSGetSystemTime(SYSTEMTIME *system_time)
os->GetSystemTime(system_time);
}
// 32bit increment
void OSInc32(UINT *value)
{
os->Inc32(value);
}
// 32bit decrement
void OSDec32(UINT *value)
{
os->Dec32(value);
}
// Sleep the thread
void OSSleep(UINT time)
{
@ -537,12 +501,6 @@ void OSSetEvent(EVENT *event)
os->SetEvent(event);
}
// Reset event
void OSResetEvent(EVENT *event)
{
os->ResetEvent(event);
}
// Wait for event
bool OSWaitEvent(EVENT *event, UINT timeout)
{

View File

@ -124,8 +124,6 @@ void *OSMemoryReAlloc(void *addr, UINT size);
void OSMemoryFree(void *addr);
UINT OSGetTick();
void OSGetSystemTime(SYSTEMTIME *system_time);
void OSInc32(UINT *value);
void OSDec32(UINT *value);
void OSSleep(UINT time);
LOCK *OSNewLock();
bool OSLock(LOCK *lock);
@ -133,15 +131,12 @@ void OSUnlock(LOCK *lock);
void OSDeleteLock(LOCK *lock);
void OSInitEvent(EVENT *event);
void OSSetEvent(EVENT *event);
void OSResetEvent(EVENT *event);
bool OSWaitEvent(EVENT *event, UINT timeout);
void OSFreeEvent(EVENT *event);
bool OSWaitThread(THREAD *t);
void OSFreeThread(THREAD *t);
bool OSInitThread(THREAD *t);
void *OSFileOpen(char *name, bool write_mode, bool read_lock);
void *OSFileOpenW(wchar_t *name, bool write_mode, bool read_lock);
void *OSFileCreate(char *name);
void *OSFileCreateW(wchar_t *name);
bool OSFileWrite(void *pData, void *buf, UINT size);
bool OSFileRead(void *pData, void *buf, UINT size);
@ -149,15 +144,11 @@ void OSFileClose(void *pData, bool no_flush);
void OSFileFlush(void *pData);
UINT64 OSFileSize(void *pData);
bool OSFileSeek(void *pData, UINT mode, int offset);
bool OSFileDelete(char *name);
bool OSFileDeleteW(wchar_t *name);
bool OSMakeDir(char *name);
bool OSMakeDirW(wchar_t *name);
bool OSDeleteDir(char *name);
bool OSDeleteDirW(wchar_t *name);
CALLSTACK_DATA *OSGetCallStack();
bool OSGetCallStackSymbolInfo(CALLSTACK_DATA *s);
bool OSFileRename(char *old_name, char *new_name);
bool OSFileRenameW(wchar_t *old_name, wchar_t *new_name);
UINT OSThreadId();
bool OSRun(char *filename, char *arg, bool hide, bool wait);