Revision 2, 0.8 kB
(checked in by yumileroy, 17 years ago)
|
[svn] * Proper SVN structure
Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00
|
Line | |
---|
1 | //--------------------------------------------------------------------------- |
---|
2 | |
---|
3 | #ifndef thOpenSourceH |
---|
4 | #define thOpenSourceH |
---|
5 | //--------------------------------------------------------------------------- |
---|
6 | #include <Classes.hpp> |
---|
7 | //--------------------------------------------------------------------------- |
---|
8 | class thOpenFile : public TThread |
---|
9 | { |
---|
10 | private: |
---|
11 | protected: |
---|
12 | void __fastcall Execute(); |
---|
13 | void __fastcall RunOpen(); |
---|
14 | public: |
---|
15 | bool thEnd; |
---|
16 | int ColType[10000]; |
---|
17 | |
---|
18 | __fastcall thOpenFile(bool CreateSuspended); |
---|
19 | void LoadAndModify(const char * pszFileName); |
---|
20 | void ReadAndModifyFromBuff(char *pBuff, DWORD dwSize, const char* pszFileName); |
---|
21 | |
---|
22 | }; |
---|
23 | //--------------------------------------------------------------------------- |
---|
24 | #endif |
---|