Rename parse to stream

This commit is contained in:
Henrik Andersson 2017-09-29 11:13:02 +02:00
parent fc6ce03875
commit b8fe3e9315
4 changed files with 6 additions and 6 deletions

View File

@ -25,7 +25,7 @@ SOUNDOBJ = @SOUNDOBJ@
SCARDOBJ = @SCARDOBJ@
CREDSSPOBJ = @CREDSSPOBJ@
RDPOBJ = tcp.o asn.o iso.o mcs.o secure.o licence.o rdp.o orders.o bitmap.o cache.o rdp5.o channels.o rdpdr.o serial.o printer.o disk.o parallel.o printercache.o mppc.o pstcache.o lspci.o seamless.o ssl.o utils.o parse.o
RDPOBJ = tcp.o asn.o iso.o mcs.o secure.o licence.o rdp.o orders.o bitmap.o cache.o rdp5.o channels.o rdpdr.o serial.o printer.o disk.o parallel.o printercache.o mppc.o pstcache.o lspci.o seamless.o ssl.o utils.o stream.o
X11OBJ = rdesktop.o xwin.o xkeymap.o ewmhints.o xclip.o cliprdr.o ctrl.o
.PHONY: all

View File

@ -168,7 +168,7 @@
#endif
#include "utils.h"
#include "parse.h"
#include "stream.h"
#include "constants.h"
#include "types.h"

View File

@ -20,7 +20,7 @@
#include <stdlib.h>
#include "rdesktop.h"
#include "parse.h"
#include "stream.h"
void
s_realloc(STREAM s, unsigned int size)

View File

@ -18,8 +18,8 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PARSE_H
#define _PARSE_H
#ifndef _STREAM_H
#define _STREAM_H
/* Parser state */
typedef struct stream
@ -103,4 +103,4 @@ void s_reset(STREAM s);
#define next_be(s,v) v = ((v) << 8) + *((s)->p++);
#endif /* _PARSE_H */
#endif /* _STREAM_H */