You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
524 B
41 lines
524 B
#ifndef _ROUTEMON_UTILS_
|
|
#define _ROUTEMON_UTILS_
|
|
|
|
UINT APIENTRY
|
|
get_str_id (
|
|
ENUM_TO_STR Array[],
|
|
ULONG ArraySz,
|
|
ULONG EnumVal
|
|
);
|
|
|
|
BOOL APIENTRY
|
|
get_enum_val (
|
|
HINSTANCE hModule,
|
|
ENUM_TO_STR Array[],
|
|
ULONG ArraySz,
|
|
LPTSTR String,
|
|
PULONG EnumVal
|
|
);
|
|
|
|
ULONG APIENTRY
|
|
put_msg (
|
|
HINSTANCE hModule,
|
|
UINT MsgId,
|
|
...
|
|
);
|
|
|
|
ULONG APIENTRY
|
|
put_str_msg (
|
|
HINSTANCE hModule,
|
|
UINT MsgId,
|
|
...
|
|
);
|
|
|
|
ULONG APIENTRY
|
|
put_error_msg (
|
|
DWORD error
|
|
);
|
|
|
|
#endif
|
|
|
|
|