Changeset 106302 in vbox
- Timestamp:
- Oct 14, 2024 9:15:17 AM (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/tools/VBoxCertUtil.cpp
r106061 r106302 45 45 #include <iprt/time.h> 46 46 #include <iprt/utf16.h> 47 48 #include <package-generated.h> 49 #include "product-generated.h" 50 51 #include <VBox/version.h> 47 52 48 53 … … 995 1000 996 1001 /** 1002 * Shows the logo. 1003 * 1004 * @param pStream Output stream to show logo on. 1005 */ 1006 static void showLogo(PRTSTREAM pStream) 1007 { 1008 RTStrmPrintf(pStream, VBOX_PRODUCT " VBoxCertUtil Version " VBOX_VERSION_STRING " - r%s\n" 1009 "Copyright (C) " VBOX_C_YEAR " " VBOX_VENDOR "\n\n", RTBldCfgRevisionStr()); 1010 } 1011 1012 1013 /** 997 1014 * Displays the usage info. 998 1015 */ … … 1045 1062 }; 1046 1063 1064 showLogo(g_pStdOut); 1065 1047 1066 RTGETOPTUNION ValueUnion; 1048 1067 RTGETOPTSTATE GetState;
Note:
See TracChangeset
for help on using the changeset viewer.