Ignore:
Timestamp:
02/11/03 06:48:12 (21 years ago)
Author:
Nicholas Riley
Message:

appswitch 1.0b2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/appswitch/appswitch/main.c

    r92 r97  
    2424const char *APP_NAME;
    2525
    26 #define VERSION "1.0b1"
     26#define VERSION "1.0b2"
    2727
    2828struct {
     
    298298        if (OPTS.appAction == APP_LIST) {
    299299            char *type = (char *)&(info->ExecFileType), *crea = (char *)&(info->ExecFileCreator);
     300#define CXX(c) ( (c) < ' ' ? '?' : (c) )
     301#define OSTYPE_CHAR_ARGS(t) CXX(t[0]), CXX(t[1]), CXX(t[2]), CXX(t[3])
    300302            printf(format, psn.hi, psn.lo, info->UnixPID,
    301                    type[0], type[1], type[2], type[3],
    302                    crea[0], crea[1], crea[2], crea[3],
     303                   OSTYPE_CHAR_ARGS(type), OSTYPE_CHAR_ARGS(crea),
    303304                   name, path);
    304305            continue;
Note: See TracChangeset for help on using the changeset viewer.