modified dll/win32/kernel32/kernel32.rbuild
[reactos.git] / base / applications / network / telnet / src / tscript.h
1 #ifndef __TSCRIPT_H
2 #define __TSCRIPT_H
3
4 #include <windows.h>
5 #include <stdio.h>
6 #include "tnetwork.h"
7
8 class TScript {
9 public:
10 TScript(TNetwork &RefNetwork):Network(RefNetwork) {fp = NULL;}
11 ~TScript() {}
12 BOOL processScript(char *data);
13 void initScript(char *filename);
14 private:
15 FILE *fp;
16 char *script;
17 TNetwork &Network;
18 };
19
20 #endif