Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentscript.h
Go to the documentation of this file.
00001 #pragma once 00002 00003 #include <windows.h> 00004 #include <stdio.h> 00005 #include "tnetwork.h" 00006 00007 class TScript { 00008 public: 00009 TScript(TNetwork &RefNetwork):Network(RefNetwork) {fp = NULL;} 00010 ~TScript() {} 00011 BOOL processScript(char *data); 00012 void initScript(char *filename); 00013 private: 00014 FILE *fp; 00015 char *script; 00016 TNetwork &Network; 00017 }; Generated on Sat May 26 2012 04:16:15 for ReactOS by
1.7.6.1
|