Show
Ignore:
Timestamp:
06/03/10 22:43:33 (2 years ago)
Author:
mwhitworth
Message:

Add to network stack.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/netchannel/user/sdk/network/ipv4.h

    r2084 r2099  
    66int IpBuildHeader(void* start, struct Ipv4EndPoint* destIp, int length, int 
    77                                protocol); 
     8int IpRecvNb(Channel* channel, ChanRecvBuffer** buffer, char** buf); 
     9 
     10#define MIN(a, b) ((a) < (b) ? (a) : (b)) 
     11#define MAX(a, b) ((a) > (b) ? (a) : (b)) 
    812 
    913#endif