mirror of
https://github.com/reactos/reactos.git
synced 2026-05-25 00:30:10 +08:00
19 lines
310 B
C++
19 lines
310 B
C++
#pragma once
|
|
|
|
//#include <windows.h>
|
|
//#include <stdio.h>
|
|
|
|
#include "tnetwork.h"
|
|
|
|
class TScript {
|
|
public:
|
|
TScript(TNetwork &RefNetwork):Network(RefNetwork) {fp = NULL;}
|
|
~TScript() {}
|
|
BOOL processScript(char *data);
|
|
void initScript(char *filename);
|
|
private:
|
|
FILE *fp;
|
|
char *script;
|
|
TNetwork &Network;
|
|
};
|