Changeset 14
- Timestamp:
- Apr 8, 2010, 3:08:40 PM (15 years ago)
- Location:
- branches/1.0/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/src/build.cmd
r1 r14 1 del smb.o 2 del smb.pdr 3 gcc -o smb.o smb.c -c 4 RC -r smb.RC smb.RES 5 gcc -Zdll -Zbin-files -Zomf -o smb.pdr smb.o smb.def smb.res 6 ea2 -e DEFAULT_PORT=SMB smb.pdr 1 @echo off 2 @del uni.o 3 @del uni.pdr 4 @del .\de\uni.res 5 echo Done cleaning. 6 gcc -o uni.o uni.c -c >build.log 7 echo Done compiling. 8 cd de 9 RC -r uni.RC uni.RES 10 cd .. 11 echo Done compiling resource. 12 gcc -Zdll -Zbin-files -Zomf -o uni.pdr uni.o uni.def .\de\uni.res >>build.log 13 echo Done linking. 14 ea2 -e DEFAULT_PORT=uni uni.pdr >>build.log 15 echo Done attaching EA. 7 16 rem d: 8 17 rem cd \OS2\DLL 9 rem lxunlock smb.pdr18 rem lxunlock uni.pdr -
branches/1.0/src/de/uni.dlg
r13 r14 26 26 LTEXT "Parameters:", DT_PARAMETERS, 13, 116, 53, 8, 27 27 DT_VCENTER 28 ENTRYFIELD "", ID_PARAMETERS, 71, 103, 142, 8, ES_MARGIN 28 29 LTEXT "Printer:", DT_UNIQUEUE, 13, 102, 53, 8, DT_VCENTER | 29 30 NOT WS_VISIBLE -
branches/1.0/src/de/uni.rc
r7 r14 143 143 144 144 rcinclude UNI.dlg 145 rcinclude description.rc145 rcinclude ".\description.rc" -
branches/1.0/src/makefile.kmk
r11 r14 40 40 uni_de_CLEAN = $(PATH_BIN)/de/uni.pdr 41 41 42 uni_CFLAGS = -Z omf42 uni_CFLAGS = -Zdll -Zbin-files -Zomf 43 43 uni_CFLAGS.release = -s -O1 -march=pentium -mtune=pentium4 44 44 uni_CFLAGS.debug = -g -O0 -DDEBUG 45 uni_LDFLAGS = -Zomf -Zno-fork -Zmap -Zbin-files 45 # gcc -Zdll -Zbin-files -Zomf -o smb.pdr smb.o smb.def smb.res 46 # uni_LDFLAGS = -Zomf -Zno-fork -Zmap -Zdll -Zbin-files 47 uni_LDFLAGS = -Zdll -Zbin-files -Zomf 46 48 uni_LDFLAGS.release = -s 47 49 uni_LDFLAGS.debug = -g 50 48 51 49 52 uni_DEFS = -
branches/1.0/src/uni.h
r12 r14 156 156 ** port defaults 157 157 */ 158 #define DEF_INITIALIZATION " localhost#PRINT#WORKGROUP#guest#1;"158 #define DEF_INITIALIZATION "ePDF.EXE#-PS:'file';" 159 159 #define DEF_TERMINATION ";" 160 160 #define DEF_PORTDRIVER "UNI;" … … 201 201 #define DT_COPIES 215 202 202 #define DT_COPIES2 216 203 #define DT_PROGRAM 217 204 #define DT_PARAMETERS 218 203 #define ID_PROGRAM 217 204 #define DT_PROGRAM 218 205 #define ID_PARAMETERS 219 206 #define DT_PARAMETERS 220
Note:
See TracChangeset
for help on using the changeset viewer.