VirtualBox

Ignore:
Timestamp:
Feb 6, 2007 4:25:06 AM (18 years ago)
Author:
vboxsync
Message:

inline != extern for MSC.

Location:
trunk/src/VBox/Devices/Network/slirp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/slirp/misc.c

    r530 r674  
    106106};
    107107
    108 inline void
     108#ifndef _MSC_VER
     109inline
     110#endif
     111void
    109112insque_32(a, b)
    110113        void *a;
     
    121124}
    122125
    123 inline void
     126#ifndef _MSC_VER
     127inline
     128#endif
     129void
    124130remque_32(a)
    125131        void *a;
  • trunk/src/VBox/Devices/Network/slirp/slirp.h

    r1 r674  
    317317# define remque_32 remque
    318318#else
     319# ifdef _MSC_VER
     320 extern void insque_32 _P((void *, void *));
     321 extern void remque_32 _P((void *));
     322# else
    319323 inline void insque_32 _P((void *, void *));
    320324 inline void remque_32 _P((void *));
     325# endif
    321326#endif
    322327
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