From 869900a5f90c0b40d49befe6147adff84cc23062 Mon Sep 17 00:00:00 2001 From: tzachid Date: Thu, 24 Nov 2005 14:43:28 +0000 Subject: [PATCH] Added RC files to SDP Removed support for windows 9x from the provider. (Rev 774) git-svn-id: svn://openib.tc.cornell.edu/gen1@187 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86 --- trunk/ulp/sdp/kernel/SOURCES | 6 +++-- trunk/ulp/sdp/kernel/makefile | 2 +- trunk/ulp/sdp/kernel/sdp.rc | 47 +++++++++++++++++++++++++++++++++++ 3 files changed, 52 insertions(+), 3 deletions(-) create mode 100644 trunk/ulp/sdp/kernel/sdp.rc diff --git a/trunk/ulp/sdp/kernel/SOURCES b/trunk/ulp/sdp/kernel/SOURCES index 83f1c428..e5a3e4ef 100644 --- a/trunk/ulp/sdp/kernel/SOURCES +++ b/trunk/ulp/sdp/kernel/SOURCES @@ -2,7 +2,8 @@ TARGETNAME=Sdp TARGETPATH=..\..\..\bin\kernel\obj$(BUILD_ALT_DIR) TARGETTYPE=DRIVER -SOURCES= SdpDriver.cpp \ +SOURCES= Sdp.rc \ + SdpDriver.cpp \ SdpUserFile.cpp \ SdpGenUtils.cpp \ SdpSocket.cpp \ @@ -10,7 +11,8 @@ SOURCES= SdpDriver.cpp \ SdpBufferPool.cpp \ SdpRecvPool.cpp \ SdpConnectionList.cpp \ - SdpTrace.cpp + SdpTrace.cpp + INCLUDES=..\include;\ ..\..\..\inc;\ diff --git a/trunk/ulp/sdp/kernel/makefile b/trunk/ulp/sdp/kernel/makefile index 9c985f57..128ed372 100644 --- a/trunk/ulp/sdp/kernel/makefile +++ b/trunk/ulp/sdp/kernel/makefile @@ -4,4 +4,4 @@ # that is shared by all the driver components of the Windows NT DDK # -!INCLUDE $(NTMAKEENV)\makefile.def +!INCLUDE ..\..\..\inc\openib.def diff --git a/trunk/ulp/sdp/kernel/sdp.rc b/trunk/ulp/sdp/kernel/sdp.rc new file mode 100644 index 00000000..a9ef0d25 --- /dev/null +++ b/trunk/ulp/sdp/kernel/sdp.rc @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2005 Mellanox Technologies. All rights reserved. + * + * This software is available to you under the OpenIB.org BSD license + * below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + * $Id$ + */ + + +#include + +#define VER_FILETYPE VFT_DRV +#define VER_FILESUBTYPE VFT2_UNKNOWN + +#if DBG +#define VER_FILEDESCRIPTION_STR "SDP over InfiniBand Driver (Debug)" +#else +#define VER_FILEDESCRIPTION_STR "SDP over InfiniBand Driver" +#endif + +#define VER_INTERNALNAME_STR "sdp.sys" +#define VER_ORIGINALFILENAME_STR "sdp.sys" + +#include -- 2.41.0