VirtualBox

Changeset 54690 in vbox for trunk/include


Ignore:
Timestamp:
Mar 9, 2015 8:17:27 AM (10 years ago)
Author:
vboxsync
Message:

asmdefs.mac: RT_CONCAT* macros.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/asmdefs.mac

    r54255 r54690  
    7676%define RT_MAKE_U32_FROM_U8(b0, b1, b2, b3) ( (b3 << 24) | (b2 << 16) | (b1 << 8) | b0 )
    7777
     78;; Preprocessor concatenation macro.
     79%define RT_CONCAT(a_1,a_2)              a_1 %+ a_2
     80
     81;; Preprocessor concatenation macro, three arguments.
     82%define RT_CONCAT3(a_1,a_2,a_3)         a_1 %+ a_2 %+ a_3
     83
     84;; Preprocessor concatenation macro, four arguments.
     85%define RT_CONCAT4(a_1,a_2,a_3,a_4)     a_1 %+ a_2 %+ a_3 %+ a_4
     86
     87
    7888;; Define ASM_FORMAT_PE64 if applicable.
    7989%ifdef ASM_FORMAT_PE
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette