00001 #ifndef _WINC_PRODUCT
00002 #define _WINC_PRODUCT
00003
00004 #include <WXP/File.h>
00005
00006 namespace WXP {
00007 struct Product {
00008 char pattern[40];
00009 char act_str[10];
00010 int action;
00011 char file_tmpl[250];
00012 char hfile_tmpl[100];
00013 char command[250];
00014 int raw;
00015 int binary;
00016
00017 int selected;
00018 int unique;
00019 int pan;
00020 int offset;
00021 int pos;
00022 File file;
00023 File hfile;
00024
00025 Product();
00026 int init();
00027 int print();
00028
00029 enum ACTION { DEFAULT,
00030 WRITE,
00031 APPEND,
00032 PIPE,
00033 FILE,
00034 RUN,
00035 NONE
00036 };
00037 };
00038 }
00039 #endif