Changeset 44975 in vbox for trunk/src/VBox/Additions/WINNT/VBoxCredProv/testcase
- Timestamp:
- Mar 11, 2013 11:22:01 AM (12 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxCredProv/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxCredProv/testcase/Makefile.kmk
r42239 r44975 5 5 6 6 # 7 # Copyright (C) 2009-201 2Oracle Corporation7 # Copyright (C) 2009-2013 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 23 23 tstCredentialProvider_SOURCES = \ 24 24 tstCredentialProvider.cpp 25 tstCredentialProvider_SDKS.x86 = WINDDK 26 27 # 28 # Since this is not the default SDK we have to navigate manually to it. 29 # 30 VBOX_PATH_PSDK_200702 := \ 31 $(PATH_DEVTOOLS)/win.x86/sdk/x200702/ 32 33 tstCredentialProvider_INCS := \ 34 $(VBOX_PATH_PSDK_200702)/Include 35 tstCredentialProvider_LIBS.x86 := \ 36 $(VBOX_PATH_PSDK_200702)/Lib/credui.lib \ 37 $(VBOX_PATH_PSDK_200702)/Lib/Secur32.Lib 38 tstCredentialProvider_LIBS.amd64 := \ 39 $(VBOX_PATH_PSDK_200702)/Lib/x64/Credui.Lib \ 40 $(VBOX_PATH_PSDK_200702)/Lib/x64/Secur32.Lib 25 tstCredentialProvider_LIBS = \ 26 $(PATH_SDK_$(VBOX_WINPSDK_GST_WLH)_LIB)/credui.lib \ 27 $(PATH_SDK_$(VBOX_WINPSDK_GST_WLH)_LIB)/Secur32.Lib 41 28 42 29 include $(FILE_KBUILD_SUB_FOOTER) 30 -
trunk/src/VBox/Additions/WINNT/VBoxCredProv/testcase/tstCredentialProvider.cpp
r40268 r44975 21 21 printf("Test returned %ld\n", dwErr); 22 22 23 return dwE RR== ERROR_SUCCESS ? 0 : 1;23 return dwErr == ERROR_SUCCESS ? 0 : 1; 24 24 }
Note:
See TracChangeset
for help on using the changeset viewer.