forked from artzub/tdbf
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtdbf_c5r.cpp
executable file
·35 lines (34 loc) · 1.09 KB
/
tdbf_c5r.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USEUNIT("dbf_collate.pas");
USEUNIT("Dbf_Common.pas");
USEUNIT("Dbf_Cursor.pas");
USEUNIT("Dbf_Fields.pas");
USEUNIT("Dbf_DbfFile.pas");
USEUNIT("Dbf_IdxCur.pas");
USEUNIT("Dbf_IdxFile.pas");
USEUNIT("Dbf_Memo.pas");
USEUNIT("Dbf_PgFile.pas");
USEUNIT("Dbf_Str.pas");
USEUNIT("Dbf.pas");
USEUNIT("Dbf_PrsSupp.pas");
USEUNIT("Dbf_PrsDef.pas");
USEUNIT("Dbf_PrsCore.pas");
USEUNIT("Dbf_Parser.pas");
USEUNIT("Dbf_Lang.pas");
USEUNIT("Dbf_Wtil.pas");
USEPACKAGE("vcl50.bpi");
USEPACKAGE("vcldb50.bpi");
USEUNIT("Dbf_PgcFile.pas");
USEUNIT("Dbf_Avl.pas");
//---------------------------------------------------------------------------
#pragma package(smart_init)
//---------------------------------------------------------------------------
// Source du paquet.
//---------------------------------------------------------------------------
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
{
return 1;
}
//---------------------------------------------------------------------------