msys2-launcher/macros.h
David Macek a05668dffc Fixed bad value of "Start in" field after pinning; plus various fixed:
- version information consolidated into version.h
- removed strip from Makefile
- updated PKGBUILD
- fixed minor things in launcher.c
- added header guards
2015-11-04 12:11:00 +01:00

13 lines
220 B
C

#ifndef M2L_MACROS_H
#define M2L_MACROS_H
#define UNUSED(x) ((void)(x))
#define STRINGIFY_A_(x) #x
#define STRINGIFY_A(x) STRINGIFY_A_(x)
#define STRINGIFY_W_(x) L ## #x
#define STRINGIFY_W(x) STRINGIFY_W_(x)
#endif