Changeset 14604 in vbox
- Timestamp:
- Nov 25, 2008 10:05:30 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39905
- Location:
- trunk/src/VBox
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r14576 r14604 49 49 * (Main API TypeLib block for the WiX installer) 50 50 * 51 * 8. src/VBox/Runtime/common/err/errmsgvboxcom.xsl => 52 * out/<platform>/obj/src/VBox/Runtime/errmsgvboxcomdata.h 53 * (<result> extraction for %Rhrc the format specifier) 54 * 51 55 Copyright (C) 2006-2007 Sun Microsystems, Inc. 52 56 … … 258 262 </descGroup> 259 263 264 <!-- 265 Note that src/VBox/Runtime/common/err/errmsgvboxcom.xsl will ignore 266 everything in <result>/<desc> after (and including) the first dot, so express 267 the matter of the error code in the first sentence and keep it short. 268 --> 269 260 270 <result name="VBOX_E_OBJECT_NOT_FOUND" value="0x80BB0001"> 261 271 <desc> … … 293 303 </desc> 294 304 </result> 305 306 <!-- 307 Note that src/VBox/Runtime/common/err/errmsgvboxcom.xsl will ignore 308 everything in <result>/<desc> after (and including) the first dot, so express 309 the matter of the error code in the first sentence and keep it short. 310 --> 295 311 296 312 <descGroup/> -
trunk/src/VBox/Runtime/Makefile.kmk
r14500 r14604 84 84 $(IPRT_OUT_DIR)/errmsgdata.h \ 85 85 $(IPRT_OUT_DIR)/errmsgcomdata.h \ 86 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h \ 86 87 $(IPRT_OUT_DIR)/Doxyfile.iprt \ 87 88 $(IPRT_OUT_DIR)/Doxyfile.iprt.dep \ … … 1433 1434 common/err/errmsg.cpp_INCS = $(IPRT_OUT_DIR) 1434 1435 1435 win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgcomdata.h 1436 common/err/errmsgxpcom.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h 1437 common/err/errmsgxpcom.cpp_INCS = $(IPRT_OUT_DIR) 1438 1439 win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgcomdata.h $(IPRT_OUT_DIR)/errmsgvboxcomdata.h 1436 1440 win/errmsgwin.cpp_INCS = $(IPRT_OUT_DIR) 1437 1441 … … 1462 1466 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^) 1463 1467 1468 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h: \ 1469 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsgvboxcom.xsl \ 1470 $(VBOX_PATH_RUNTIME_SRC)/../Main/idl/VirtualBox.xidl \ 1471 | $$(dir $$@) 1472 $(call MSG_GENERATE,,$@,$(filter %.xidl,$^)) 1473 $(VBOX_XSLTPROC) -o $@ $< $(filter %.xidl,$^) 1464 1474 1465 1475 # -
trunk/src/VBox/Runtime/common/err/errmsgxpcom.cpp
r13083 r14604 107 107 MY_ERR("NS_SUCCESS_FILE_DIRECTORY_EMPTY", "NS_SUCCESS_FILE_DIRECTORY_EMPTY", UINT32_C(0x00520001)), 108 108 109 #include "errmsgvboxcomdata.h" 110 109 111 { NULL, NULL, 0 } 110 112 #undef MY_ERR -
trunk/src/VBox/Runtime/win/errmsgwin.cpp
r13083 r14604 49 49 { 50 50 #include "errmsgcomdata.h" 51 #include "errmsgvboxcomdata.h" 51 52 { NULL, NULL, 0 } 52 53 };
Note:
See TracChangeset
for help on using the changeset viewer.