1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 17:39: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 // 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) bool OSFileRenameW(wchar_t *old_name, wchar_t *new_name)
{ {
return os->FileRenameW(old_name, new_name); return os->FileRenameW(old_name, new_name);
@ -350,50 +346,30 @@ bool OSFileSeek(void *pData, UINT mode, int offset)
} }
// Delete the file // Delete the file
bool OSFileDelete(char *name)
{
return os->FileDelete(name);
}
bool OSFileDeleteW(wchar_t *name) bool OSFileDeleteW(wchar_t *name)
{ {
return os->FileDeleteW(name); return os->FileDeleteW(name);
} }
// Create a directory // Create a directory
bool OSMakeDir(char *name)
{
return os->MakeDir(name);
}
bool OSMakeDirW(wchar_t *name) bool OSMakeDirW(wchar_t *name)
{ {
return os->MakeDirW(name); return os->MakeDirW(name);
} }
// Delete the directory // Delete the directory
bool OSDeleteDir(char *name)
{
return os->DeleteDir(name);
}
bool OSDeleteDirW(wchar_t *name) bool OSDeleteDirW(wchar_t *name)
{ {
return os->DeleteDirW(name); return os->DeleteDirW(name);
} }
// Open the file // 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) void *OSFileOpenW(wchar_t *name, bool write_mode, bool read_lock)
{ {
return os->FileOpenW(name, write_mode, read_lock); return os->FileOpenW(name, write_mode, read_lock);
} }
// Create a file // Create a file
void *OSFileCreate(char *name)
{
return os->FileCreate(name);
}
void *OSFileCreateW(wchar_t *name) void *OSFileCreateW(wchar_t *name)
{ {
return os->FileCreateW(name); return os->FileCreateW(name);
@ -483,18 +459,6 @@ void OSGetSystemTime(SYSTEMTIME *system_time)
os->GetSystemTime(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 // Sleep the thread
void OSSleep(UINT time) void OSSleep(UINT time)
{ {
@ -537,12 +501,6 @@ void OSSetEvent(EVENT *event)
os->SetEvent(event); os->SetEvent(event);
} }
// Reset event
void OSResetEvent(EVENT *event)
{
os->ResetEvent(event);
}
// Wait for event // Wait for event
bool OSWaitEvent(EVENT *event, UINT timeout) bool OSWaitEvent(EVENT *event, UINT timeout)
{ {

View File

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