Changeset 129 in vbox
- Timestamp:
- Jan 18, 2007 12:07:02 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r1 r129 986 986 { 987 987 uint32_t u32TimeLow; 988 uint16_t u16TimeMi n;988 uint16_t u16TimeMid; 989 989 uint16_t u16TimeHiAndVersion; 990 990 uint16_t u16ClockSeq; -
trunk/src/VBox/Runtime/Makefile
r96 r129 101 101 ifdef IPRT_WITH_KLDR 102 102 RuntimeR3_DEFS += LDR_WITH_KLDR KLDR_USE_CRT 103 RuntimeR3_DEFS.debug += KLDRMOD_STRICT KLDRMODLX_STRICT KLDRMODPE_STRICT KLDRMODNATIVE_STRICT KLDRRDR_STRICT 103 RuntimeR3_DEFS.debug += KLDRMOD_STRICT KLDRMODLX_STRICT KLDRMODPE_STRICT KLDRMODNATIVE_STRICT KLDRRDR_STRICT 104 104 endif 105 105 RuntimeR3_DEFS.l4 = L4 … … 113 113 $(IPRT_PATH_KLDR) 114 114 endif 115 RuntimeR3_INCS.os2 = \116 $(PATH_ROOT)/src/libs/libuuid117 115 RuntimeR3_INCS.l4 = \ 118 116 $(PATH_ROOT)/src/libs/libuuid \ … … 272 270 generic/semnoint-generic.cpp \ 273 271 generic/sched-generic.cpp \ 272 generic/uuid-generic.cpp \ 274 273 os2/RTErrConvertFromOS2.cpp \ 275 r3/linux/uuid-linux.cpp \276 274 r3/os2/sems-os2.cpp \ 277 275 r3/os2/system-os2.cpp \ -
trunk/src/VBox/Runtime/VBox/strformat-vbox.cpp
r1 r129 416 416 "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x", 417 417 pUuid->Gen.u32TimeLow, 418 pUuid->Gen.u16TimeMi n,418 pUuid->Gen.u16TimeMid, 419 419 pUuid->Gen.u16TimeHiAndVersion, 420 420 pUuid->Gen.u16ClockSeq & 0xff, -
trunk/src/VBox/Runtime/strformatrt.cpp
r1 r129 419 419 "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x", 420 420 u.pUuid->Gen.u32TimeLow, 421 u.pUuid->Gen.u16TimeMi n,421 u.pUuid->Gen.u16TimeMid, 422 422 u.pUuid->Gen.u16TimeHiAndVersion, 423 423 u.pUuid->Gen.u16ClockSeq & 0xff, -
trunk/src/VBox/Runtime/testcase/Makefile
r26 r129 50 50 tstUtf8 \ 51 51 tstDeadlock \ 52 tstUuid \ 52 53 tstErrUnique 53 54 PROGRAMS.win = \ … … 173 174 tstDeadlock_SOURCES = tstDeadlock.cpp 174 175 176 tstUuid_SOURCES = tstUuid.cpp 177 175 178 tstErrUnique_SOURCES = tstErrUnique.cpp 176 179 tstErrUnique_INCS = $(PATH_TARGET)/..
Note:
See TracChangeset
for help on using the changeset viewer.