// SoftEther VPN Source Code - Developer Edition Master Branch // Mayaqua Kernel // Win32.h // Header of Win32.c #ifdef OS_WIN32 #ifndef WIN32_H #define WIN32_H // Function prototype OS_DISPATCH_TABLE *Win32GetDispatchTable(); void Win32Init(); void Win32Free(); void *Win32MemoryAlloc(UINT size); void *Win32MemoryReAlloc(void *addr, UINT size); void Win32MemoryFree(void *addr); UINT Win32GetTick(); void Win32GetSystemTime(SYSTEMTIME *system_time); void Win32Inc32(UINT *value); void Win32Dec32(UINT *value); void Win32Sleep(UINT time); LOCK *Win32NewLock(); bool Win32Lock(LOCK *lock); void Win32Unlock(LOCK *lock); void Win32DeleteLock(LOCK *lock); void Win32InitEvent(EVENT *event); void Win32SetEvent(EVENT *event); void Win32ResetEvent(EVENT *event); bool Win32WaitEvent(EVENT *event, UINT timeout); void Win32FreeEvent(EVENT *event); bool Win32WaitThread(THREAD *t); void Win32FreeThread(THREAD *t); bool Win32InitThread(THREAD *t); UINT Win32ThreadId(); void *Win32FileOpen(char *name, bool write_mode, bool read_lock); void *Win32FileOpenW(wchar_t *name, bool write_mode, bool read_lock); void *Win32FileCreate(char *name); void *Win32FileCreateW(wchar_t *name); bool Win32FileWrite(void *pData, void *buf, UINT size); bool Win32FileRead(void *pData, void *buf, UINT size); bool Win32FileSetDate(void *pData, UINT64 created_time, UINT64 updated_time); bool Win32FileGetDate(void *pData, UINT64 *created_time, UINT64 *updated_time, UINT64 *accessed_date); void Win32FileClose(void *pData, bool no_flush); void Win32FileFlush(void *pData); UINT64 Win32FileSize(void *pData); bool Win32FileSeek(void *pData, UINT mode, int offset); bool Win32FileDelete(char *name); bool Win32FileDeleteW(wchar_t *name); bool Win32MakeDir(char *name); bool Win32MakeDirW(wchar_t *name); bool Win32DeleteDir(char *name); bool Win32DeleteDirW(wchar_t *name); CALLSTACK_DATA *Win32GetCallStack(); bool Win32GetCallStackSymbolInfo(CALLSTACK_DATA *s); bool Win32FileRename(char *old_name, char *new_name); bool Win32FileRenameW(wchar_t *old_name, wchar_t *new_name); bool Win32Run(char *filename, char *arg, bool hide, bool wait); bool Win32RunW(wchar_t *filename, wchar_t *arg, bool hide, bool wait); void *Win32RunEx(char *filename, char *arg, bool hide); void *Win32RunEx2(char *filename, char *arg, bool hide, UINT *process_id); void *Win32RunEx3(char *filename, char *arg, bool hide, UINT *process_id, bool disableWow); void *Win32RunExW(wchar_t *filename, wchar_t *arg, bool hide); void *Win32RunEx2W(wchar_t *filename, wchar_t *arg, bool hide, UINT *process_id); void *Win32RunEx3W(wchar_t *filename, wchar_t *arg, bool hide, UINT *process_id, bool disableWow); bool Win32WaitProcess(void *h, UINT timeout); bool Win32RunAndWaitProcess(wchar_t *filename, wchar_t *arg, bool hide, bool disableWow, UINT timeout); bool Win32IsProcessAlive(void *handle); bool Win32TerminateProcess(void *handle); void Win32CloseProcess(void *handle); bool Win32IsSupportedOs(); void Win32GetOsInfo(OS_INFO *info); void Win32Alert(char *msg, char *caption); void Win32AlertW(wchar_t *msg, wchar_t *caption); void Win32DebugAlert(char *msg); char* Win32GetProductId(); void Win32SetHighPriority(); void Win32RestorePriority(); void *Win32NewSingleInstance(char *instance_name); void Win32FreeSingleInstance(void *data); void Win32GetMemInfo(MEMINFO *info); void Win32Yield(); void Win32UnlockEx(LOCK *lock, bool inner); UINT Win32GetOsType(); UINT Win32GetSpVer(char *str); UINT Win32GetOsSpVer(); void Win32NukuEn(char *dst, UINT size, char *src); void Win32NukuEnW(wchar_t *dst, UINT size, wchar_t *src); void Win32GetDirFromPath(char *dst, UINT size, char *src); void Win32GetDirFromPathW(wchar_t *dst, UINT size, wchar_t *src); void Win32GetExeDir(char *name, UINT size); void Win32GetExeDirW(wchar_t *name, UINT size); void Win32GetCurrentDir(char *dir, UINT size); void Win32GetCurrentDirW(wchar_t *dir, UINT size); void Win32GetExeName(char *name, UINT size); void Win32GetExeNameW(wchar_t *name, UINT size); DIRLIST *Win32EnumDirEx(char *dirname, COMPARE *compare); DIRLIST *Win32EnumDirExW(wchar_t *dirname, COMPARE *compare); bool Win32GetDiskFreeW(wchar_t *path, UINT64 *free_size, UINT64 *used_size, UINT64 *total_size); bool Win32GetDiskFree(char *path, UINT64 *free_size, UINT64 *used_size, UINT64 *total_size); bool Win32SetFolderCompress(char *path, bool compressed); bool Win32SetFolderCompressW(wchar_t *path, bool compressed); UINT64 Win32FastTick64(); void Win32InitNewThread(); bool Win32IsNt(); bool Win32InputW(wchar_t *str, UINT size); bool Win32InputFromFileW(wchar_t *str, UINT size); char *Win32InputFromFileLineA(); void Win32PrintW(wchar_t *str); void Win32PrintToFileW(wchar_t *str); bool Win32GetVersionExInternal(void *info); bool Win32GetVersionExInternalForWindows81orLater(void *info); UINT Win32GetNumberOfCpuInner(); void Win32SetThreadName(UINT thread_id, char *name); #endif // WIN32_H #endif // OS_WIN32