diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-24 16:22:29 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-07-27 08:18:16 +0200 |
commit | 38ecca9b30e0fc5f7cc6264857f983e40dd58195 (patch) | |
tree | 3ad61e6d5cddcf161d27cfe4c6ca85fcf1cab8f6 /scp2 | |
parent | efac5fa06e2d00bd67c582d8a6b1f1fc69c9b9f5 (diff) |
inline a bunch of use-once macros
no point in having a macro unless it's actually going to reduce the
number of lines of code
Change-Id: Ic8760d6506cf272d7bd088f7b3b4dcbf288099fc
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/inc/macros.inc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scp2/inc/macros.inc b/scp2/inc/macros.inc index 54e5bc6c709f..86b221e57c6b 100644 --- a/scp2/inc/macros.inc +++ b/scp2/inc/macros.inc @@ -426,20 +426,12 @@ End #define SCP2_URE_DL_DIR GID_DIR_URE_LIB #if defined WNT #define SCP2_URE_DL_NORMAL(n) n ".dll" -#define SCP2_URE_DL_BARE(n) n ".dll" #define SCP2_URE_DL_VER(n, v) n v ".dll" -#define SCP2_URE_DL_COMID_VER(n, v) n v STRING(COMID) ".dll" -#define SCP2_URE_DL_COMID_NORMAL(n) n STRING(COMID) ".dll" #define SCP2_URE_DL_UNO_VER(n, v) n v ".dll" #define SCP2_URE_DL_UNO_COMID_VER(n, v) n v STRING(COMID) ".dll" #else #define SCP2_URE_DL_NORMAL(n) "lib" n STRING(UNXSUFFIX) -#define SCP2_URE_DL_BARE(n) n STRING(UNXSUFFIX) #define SCP2_URE_DL_VER(n, v) "lib" n STRING(UNXSUFFIX) "." v -#define SCP2_URE_DL_COMID_VER(n, v) \ - "lib" n STRING(COMID) STRING(UNXSUFFIX) "." v -#define SCP2_URE_DL_COMID_NORMAL(n) \ - "lib" n STRING(COMID) STRING(UNXSUFFIX) #define SCP2_URE_DL_UNO_VER(n, v) "libuno_" n STRING(UNXSUFFIX) "." v #define SCP2_URE_DL_UNO_NORMAL(n) "libuno_" n STRING(UNXSUFFIX) #define SCP2_URE_DL_UNO_COMID_VER(n, v) \ |