mirror of https://github.com/FreeRDP/FreeRDP
feat winpr: add WINPR_UNUSED macro
WINPR_UNUSED can be used to mark intentionally unused function parameters.
This commit is contained in:
parent
e3d45c4580
commit
389b7f218b
|
@ -71,4 +71,6 @@ WINPR_API const char* winpr_get_build_date(void);
|
||||||
WINPR_API const char* winpr_get_build_revision(void);
|
WINPR_API const char* winpr_get_build_revision(void);
|
||||||
WINPR_API const char* winpr_get_build_config(void);
|
WINPR_API const char* winpr_get_build_config(void);
|
||||||
|
|
||||||
|
#define WINPR_UNUSED(x) (void)(x)
|
||||||
|
|
||||||
#endif /* WINPR_H */
|
#endif /* WINPR_H */
|
||||||
|
|
Loading…
Reference in New Issue