mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-23 18:09:53 +03:00
34 lines
723 B
C
34 lines
723 B
C
// SoftEther VPN Source Code - Developer Edition Master Branch
|
|
// Cedar Communication Module
|
|
|
|
|
|
// UT.h
|
|
// Header of UT.c
|
|
|
|
#ifndef UT_H
|
|
#define UT_H
|
|
|
|
#include "Mayaqua/MayaType.h"
|
|
|
|
// Constant
|
|
#define SPEED_METER_REFRESH_INTERVAL 500
|
|
|
|
#ifdef UT_C
|
|
// For internal declaration
|
|
|
|
// Function prototype
|
|
UINT UtSpeedMeterDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param);
|
|
void UtSpeedMeterDlgInit(HWND hWnd);
|
|
void UtSpeedMeterDlgRefreshList(HWND hWnd);
|
|
void UtSpeedMeterDlgRefreshStatus(HWND hWnd);
|
|
void UtSpeedMeterDlgUpdate(HWND hWnd);
|
|
void UtSpeedMeterDlgRefreshStatus(HWND hWnd);
|
|
|
|
#endif // UT_C
|
|
|
|
// Function prototype
|
|
void UtSpeedMeterEx(void *hWnd);
|
|
|
|
#endif // UT_H
|
|
|