Changeset 772 for branches/smbpdr-1.0
- Timestamp:
- May 2, 2013, 5:39:58 PM (12 years ago)
- Location:
- branches/smbpdr-1.0
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/smbpdr-1.0/changelog
r758 r772 1 Version 1.0.3 02-05-2013 2 !Fixed: SplPdQuery now properly returns the required buffer size if a NULL 3 buffer is specified. 4 1 5 Version 1.0.2 12-05-2012 2 6 +Added: SplPdQuery and SplPdSet now implemented. This allows applications to -
branches/smbpdr-1.0/smb.c
r758 r772 955 955 956 956 case BIDI_Q_PORTDRV: 957 // If no buffer was provided, just return the required size 958 if ( !pOutData && pcbOutData ) { 959 *pcbOutData = sizeof( PORTSETTINGS ); 960 return ERROR_MORE_DATA; 961 } 957 962 // Make sure the data is valid 958 if ( !pOutData || *pcbOutData < sizeof( PORTSETTINGS))963 if ( !pOutData || !pcbOutData || ( *pcbOutData < sizeof( PORTSETTINGS ))) 959 964 return( ERROR_INVALID_PARAMETER ); 960 965 pSettings = (PPORTSETTINGS) pOutData; -
branches/smbpdr-1.0/smb.def
r758 r772 1 1 LIBRARY SMB INITINSTANCE TERMINSTANCE 2 DESCRIPTION '@#netlabs.org:1.0 2#@##1## 5 Dec 2012 15:31:07 sigel::::::@@Samba client port driver for SMB printing'2 DESCRIPTION '@#netlabs.org:1.03#@##1## 2 May 2013 09:48:38 REINFORCE::::::@@Samba client port driver for SMB printing' 3 3 PROTMODE 4 4 DATA MULTIPLE NONSHARED LOADONCALL -
branches/smbpdr-1.0/smb.h
r758 r772 1 #define DRIVER_VERSION "1.0 2"1 #define DRIVER_VERSION "1.03" 2 2 #define PATH_SMB_PDR "?:\\OS2\\DLL\\SMB.PDR" 3 3 #define SMB_DLL "SMB.PDR"
Note:
See TracChangeset
for help on using the changeset viewer.