1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* * Copyright (C) 2008, Brian Cully <bjc@kublai.com> */ #ifndef _MSG_H #define _MSG_H #include <erl_interface.h> #include <ei.h> #include <stdlib.h> typedef u_int32_t msglen_t; ETERM *read_msg(); int write_msg(ETERM *msg); #endif