Changeset 7054 in vbox
- Timestamp:
- Feb 20, 2008 5:17:19 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28289
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r6962 r7054 1045 1045 RuntimeGuestR0_SOURCES.$(BUILD_TARGET) := $(RuntimeR0Drv_SOURCES.$(BUILD_TARGET)) 1046 1046 RuntimeGuestR0_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH) := $(RuntimeR0Drv_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH)) 1047 RuntimeGuestR0_SOURCES.win += common/string/memcmp.cpp 1047 1048 ifdef VBOX_USE_VCC80 1048 1049 RuntimeGuestR0_SOURCES.win += \ 1049 1050 common/string/memchr.cpp \ 1050 common/string/memcmp.cpp \1051 1051 common/string/memcpy.cpp \ 1052 1052 common/string/memset.cpp \ … … 1071 1071 $(filter-out generic/RTLogWriteUser-generic.cpp,$(RuntimeR0Drv_SOURCES)) \ 1072 1072 $(RuntimeR0Drv_SOURCES.win) \ 1073 VBox/logbackdoor.cpp 1073 VBox/logbackdoor.cpp \ 1074 common/string/memcmp.cpp 1074 1075 ifdef VBOX_USE_VCC80 1075 1076 RuntimeW32GuestR0_SOURCES += \ 1076 1077 common/string/memchr.cpp \ 1077 common/string/memcmp.cpp \1078 1078 common/string/memcpy.cpp \ 1079 1079 common/string/memset.cpp \ -
trunk/src/VBox/Runtime/common/string/memcmp.cpp
r5999 r7054 48 48 __checkReturn int __cdecl memcmp(__in_bcount_opt(_Size) const void * pvDst, __in_bcount_opt(_Size) const void * pvSrc, __in size_t cb) 49 49 # else 50 int memcmp(const void *pvDst, const void *pvSrc, size_t cb)50 int __cdecl memcmp(const void *pvDst, const void *pvSrc, size_t cb) 51 51 # endif 52 52 #else
Note:
See TracChangeset
for help on using the changeset viewer.