This really needs to go in a branch. It needs heavy testing and can't coincide with...
[reactos.git] / base / applications / network / telnet / src / tscript.h
1 #pragma once
2
3 #include <windows.h>
4 #include <stdio.h>
5 #include "tnetwork.h"
6
7 class TScript {
8 public:
9 TScript(TNetwork &RefNetwork):Network(RefNetwork) {fp = NULL;}
10 ~TScript() {}
11 BOOL processScript(char *data);
12 void initScript(char *filename);
13 private:
14 FILE *fp;
15 char *script;
16 TNetwork &Network;
17 };