Changeset 14


Ignore:
Timestamp:
Apr 8, 2010, 3:08:40 PM (15 years ago)
Author:
herwigb
Message:

Some more changes

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
     5echo Done cleaning.
     6gcc -o uni.o uni.c -c >build.log
     7echo Done compiling.
     8cd de
     9RC -r uni.RC uni.RES
     10cd ..
     11echo Done compiling resource.
     12gcc -Zdll -Zbin-files -Zomf -o uni.pdr uni.o uni.def .\de\uni.res >>build.log
     13echo Done linking.
     14ea2 -e DEFAULT_PORT=uni uni.pdr >>build.log
     15echo Done attaching EA.
    716rem d:
    817rem cd \OS2\DLL
    9 rem lxunlock smb.pdr
     18rem lxunlock uni.pdr
  • branches/1.0/src/de/uni.dlg

    r13 r14  
    2626        LTEXT           "Parameters:", DT_PARAMETERS, 13, 116, 53, 8,
    2727                        DT_VCENTER
     28        ENTRYFIELD      "", ID_PARAMETERS, 71, 103, 142, 8, ES_MARGIN
    2829        LTEXT           "Printer:", DT_UNIQUEUE, 13, 102, 53, 8, DT_VCENTER |
    2930                        NOT WS_VISIBLE
  • branches/1.0/src/de/uni.rc

    r7 r14  
    143143
    144144rcinclude UNI.dlg
    145 rcinclude description.rc
     145rcinclude ".\description.rc"
  • branches/1.0/src/makefile.kmk

    r11 r14  
    4040uni_de_CLEAN = $(PATH_BIN)/de/uni.pdr
    4141
    42 uni_CFLAGS = -Zomf
     42uni_CFLAGS = -Zdll -Zbin-files -Zomf
    4343uni_CFLAGS.release = -s -O1 -march=pentium -mtune=pentium4
    4444uni_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
     47uni_LDFLAGS = -Zdll -Zbin-files -Zomf 
    4648uni_LDFLAGS.release = -s
    4749uni_LDFLAGS.debug = -g
     50
    4851
    4952uni_DEFS =
  • branches/1.0/src/uni.h

    r12 r14  
    156156   ** port defaults
    157157   */
    158 #define DEF_INITIALIZATION        "localhost#PRINT#WORKGROUP#guest#1;"
     158#define DEF_INITIALIZATION        "ePDF.EXE#-PS:'file';"
    159159#define DEF_TERMINATION           ";"
    160160#define DEF_PORTDRIVER            "UNI;"
     
    201201#define DT_COPIES                   215
    202202#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.