#ifndef _SCOL_SYS_H
#define _SCOL_SYS_H

#ifdef __cplusplus
extern "C" {
#endif


/* exe manager */
struct SysExe
{
  char categ[128];
  char name[128];
  char path[1024];
  struct SysExe *prev;
  struct SysExe *next;
};
typedef struct SysExe *sysexe;

#ifdef __cplusplus
}
#endif

#endif