ssimsg.h


#ifndef SSIMSG_H
#define SSIMSG_H

#include "../h/types.h"
#include "../h/supconst.h"

typedef union ssimsg_t {
    struct {
        int service;
        int param;
    } s;
    iores_t io;
    thr_t *tres;
} ssimsg_t;

#endif


[INDICE CODICE]