git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@48 05c56307-c608-d34a-929d-697000501d7a
This commit is contained in:
parent
77df81e225
commit
6aa74b166f
@ -1,138 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.10.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxComnC10.bpl
|
|
||||||
OBJFILES = dxrgkeya.obj dxreged.obj dxCommon.obj dxComnC10.obj
|
|
||||||
MAINSOURCE = dxComnC10.cpp
|
|
||||||
RESFILES = dxComnC10.res
|
|
||||||
RESDEPEN = $(RESFILES) dxrgkeya.dfm dxreged.dfm
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS = rtl.lib vcl.lib
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
DEBUGLIBPATH = $(BCB)\lib\debug
|
|
||||||
RELEASELIBPATH = $(BCB)\lib\release
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl -O2 -Hc -H=$(BCB)\lib\vcl100.csm -w -Ve -a8 \
|
|
||||||
-k- -vi -c -b- -w-par -w-inl -Vx -tWM -D$(SYSDEFINES);$(USERDEFINES)
|
|
||||||
PFLAGS = -DBCB -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-I$(BCB)\include;$(BCB)\include\vcl -$Y- -$L- -$D- -$C- -v -JPHNE -M
|
|
||||||
RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
|
|
||||||
AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zn
|
|
||||||
LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-D"ExpressCommonLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gpr -Gl -Gi
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj Memmgr.Lib $(PACKAGES) sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!ifdef IDEOPTIONS
|
|
||||||
|
|
||||||
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxComnC10.res");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEFORMNS("dxrgkeya.pas", Dxrgkeya, frmdxAddNewRegKey);
|
|
||||||
USEFORMNS("dxreged.pas", Dxreged, frmdxLibREgPathEditor);
|
|
||||||
USEUNIT("dxCommon.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,138 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.11.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxComnC11.bpl
|
|
||||||
OBJFILES = dxrgkeya.obj dxreged.obj dxCommon.obj dxComnC11.obj
|
|
||||||
MAINSOURCE = dxComnC11.cpp
|
|
||||||
RESFILES = dxComnC11.res
|
|
||||||
RESDEPEN = $(RESFILES) dxrgkeya.dfm dxreged.dfm
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS = rtl.lib vcl.lib
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
DEBUGLIBPATH = $(BCB)\lib\debug
|
|
||||||
RELEASELIBPATH = $(BCB)\lib\release
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl -O2 -Hc -H=$(BCB)\lib\vcl100.csm -w -Ve -a8 \
|
|
||||||
-k- -vi -c -b- -w-par -w-inl -Vx -tWM -D$(SYSDEFINES);$(USERDEFINES)
|
|
||||||
PFLAGS = -DBCB -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-I$(BCB)\include;$(BCB)\include\vcl -$Y- -$L- -$D- -$C- -v -JPHNE -M
|
|
||||||
RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
|
|
||||||
AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zn
|
|
||||||
LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-D"ExpressCommonLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gpr -Gl -Gi
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj Memmgr.Lib $(PACKAGES) sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!ifdef IDEOPTIONS
|
|
||||||
|
|
||||||
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxComnC11.res");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEFORMNS("dxrgkeya.pas", Dxrgkeya, frmdxAddNewRegKey);
|
|
||||||
USEFORMNS("dxreged.pas", Dxreged, frmdxLibREgPathEditor);
|
|
||||||
USEUNIT("dxCommon.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,138 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.12.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxComnC12.bpl
|
|
||||||
OBJFILES = dxrgkeya.obj dxreged.obj dxCommon.obj dxComnC12.obj
|
|
||||||
MAINSOURCE = dxComnC12.cpp
|
|
||||||
RESFILES = dxComnC12.res
|
|
||||||
RESDEPEN = $(RESFILES) dxrgkeya.dfm dxreged.dfm
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS = rtl.lib vcl.lib
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
DEBUGLIBPATH = $(BCB)\lib\debug
|
|
||||||
RELEASELIBPATH = $(BCB)\lib\release
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl -O2 -Hc -H=$(BCB)\lib\vcl100.csm -w -Ve -a8 \
|
|
||||||
-k- -vi -c -b- -w-par -w-inl -Vx -tWM -D$(SYSDEFINES);$(USERDEFINES)
|
|
||||||
PFLAGS = -DBCB -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-I$(BCB)\include;$(BCB)\include\vcl -$Y- -$L- -$D- -$C- -v -JPHNE -M
|
|
||||||
RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
|
|
||||||
AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zn
|
|
||||||
LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-D"ExpressCommonLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gpr -Gl -Gi
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj Memmgr.Lib $(PACKAGES) sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!ifdef IDEOPTIONS
|
|
||||||
|
|
||||||
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxComnC12.res");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEFORMNS("dxrgkeya.pas", Dxrgkeya, frmdxAddNewRegKey);
|
|
||||||
USEFORMNS("dxreged.pas", Dxreged, frmdxLibREgPathEditor);
|
|
||||||
USEUNIT("dxCommon.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,138 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.14.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxComnC14.bpl
|
|
||||||
OBJFILES = dxrgkeya.obj dxreged.obj dxCommon.obj dxComnC14.obj
|
|
||||||
MAINSOURCE = dxComnC14.cpp
|
|
||||||
RESFILES = dxComnC14.res
|
|
||||||
RESDEPEN = $(RESFILES) dxrgkeya.dfm dxreged.dfm
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS = rtl.lib vcl.lib
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
DEBUGLIBPATH = $(BCB)\lib\debug
|
|
||||||
RELEASELIBPATH = $(BCB)\lib\release
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl -O2 -Hc -H=$(BCB)\lib\vcl100.csm -w -Ve -a8 \
|
|
||||||
-k- -vi -c -b- -w-par -w-inl -Vx -tWM -D$(SYSDEFINES);$(USERDEFINES)
|
|
||||||
PFLAGS = -DBCB -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-I$(BCB)\include;$(BCB)\include\vcl -$Y- -$L- -$D- -$C- -v -JPHNE -M
|
|
||||||
RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
|
|
||||||
AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zn
|
|
||||||
LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-D"ExpressCommonLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gpr -Gl -Gi
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj Memmgr.Lib $(PACKAGES) sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!ifdef IDEOPTIONS
|
|
||||||
|
|
||||||
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxComnC14.res");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEFORMNS("dxrgkeya.pas", Dxrgkeya, frmdxAddNewRegKey);
|
|
||||||
USEFORMNS("dxreged.pas", Dxreged, frmdxLibREgPathEditor);
|
|
||||||
USEUNIT("dxCommon.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,137 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.05.03
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxComnC5.bpl
|
|
||||||
OBJFILES = dxrgkeya.obj dxreged.obj dxCommon.obj dxComnC5.obj
|
|
||||||
RESFILES = dxComnC5.res
|
|
||||||
RESDEPEN = $(RESFILES) dxrgkeya.dfm dxreged.dfm
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS = Vcl50.lib
|
|
||||||
PACKAGES = vcl50.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
DEBUGLIBPATH = $(BCB)\lib\debug
|
|
||||||
RELEASELIBPATH = $(BCB)\lib\release
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl -O2 -Hc -H=$(BCB)\lib\vcl50.csm -w -Ve -a8 \
|
|
||||||
-k- -vi -c -b- -w-par -w-inl -Vx -tWM -D$(SYSDEFINES);$(USERDEFINES)
|
|
||||||
PFLAGS = -DBCB -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-I$(BCB)\include;$(BCB)\include\vcl -$Y- -$L- -$D- -$C- -v -JPHNE -M
|
|
||||||
RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
|
|
||||||
AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zn
|
|
||||||
LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-D"ExpressCommonLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gpr -Gl -Gi
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj Memmgr.Lib $(PACKAGES) sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!ifdef IDEOPTIONS
|
|
||||||
|
|
||||||
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxComnC5.res");
|
|
||||||
USEPACKAGE("vcl50.bpi");
|
|
||||||
USEFORMNS("dxrgkeya.pas", Dxrgkeya, frmdxAddNewRegKey);
|
|
||||||
USEFORMNS("dxreged.pas", Dxreged, frmdxLibREgPathEditor);
|
|
||||||
USEUNIT("dxCommon.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,137 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.06.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxComnC6.bpl
|
|
||||||
OBJFILES = dxrgkeya.obj dxreged.obj dxCommon.obj dxComnC6.obj
|
|
||||||
RESFILES = dxComnC6.res
|
|
||||||
RESDEPEN = $(RESFILES) dxrgkeya.dfm dxreged.dfm
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS = rtl.lib vcl.lib
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
DEBUGLIBPATH = $(BCB)\lib\debug
|
|
||||||
RELEASELIBPATH = $(BCB)\lib\release
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl -O2 -Hc -H=$(BCB)\lib\vcl60.csm -w -Ve -a8 \
|
|
||||||
-k- -vi -c -b- -w-par -w-inl -Vx -tWM -D$(SYSDEFINES);$(USERDEFINES)
|
|
||||||
PFLAGS = -DBCB -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-I$(BCB)\include;$(BCB)\include\vcl -$Y- -$L- -$D- -$C- -v -JPHNE -M
|
|
||||||
RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
|
|
||||||
AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zn
|
|
||||||
LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
|
|
||||||
-D"ExpressCommonLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gpr -Gl -Gi
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj Memmgr.Lib $(PACKAGES) sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!ifdef IDEOPTIONS
|
|
||||||
|
|
||||||
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxComnC6.res");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEFORMNS("dxrgkeya.pas", Dxrgkeya, frmdxAddNewRegKey);
|
|
||||||
USEFORMNS("dxreged.pas", Dxreged, frmdxLibREgPathEditor);
|
|
||||||
USEUNIT("dxCommon.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dxComnD10;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxRgKeya,
|
|
||||||
dxRegEd,
|
|
||||||
dxCommon;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,92 +0,0 @@
|
|||||||
package dxComnD10NET;
|
|
||||||
|
|
||||||
|
|
||||||
{$ALIGN 0}
|
|
||||||
{$ASSERTIONS ON}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO ON}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS ON}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION OFF}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO ON}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST OFF}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
Borland.Vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxDateUtils;
|
|
||||||
|
|
||||||
[assembly: AssemblyDescription('')]
|
|
||||||
[assembly: AssemblyConfiguration('')]
|
|
||||||
[assembly: AssemblyCompany('')]
|
|
||||||
[assembly: AssemblyProduct('')]
|
|
||||||
[assembly: AssemblyCopyright('')]
|
|
||||||
[assembly: AssemblyTrademark('')]
|
|
||||||
[assembly: AssemblyCulture('')]
|
|
||||||
|
|
||||||
|
|
||||||
// The Delphi compiler controls the AssemblyTitleAttribute via the ExeDescription.
|
|
||||||
// You can set this in the IDE via the Project Options.
|
|
||||||
// Manually setting the AssemblyTitle attribute below will override the IDE
|
|
||||||
// setting.
|
|
||||||
// [assembly: AssemblyTitle('')]
|
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// Version information for an assembly consists of the following four values:
|
|
||||||
//
|
|
||||||
// Major Version
|
|
||||||
// Minor Version
|
|
||||||
// Build Number
|
|
||||||
// Revision
|
|
||||||
//
|
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
|
||||||
// by using the '*' as shown below:
|
|
||||||
|
|
||||||
[assembly: AssemblyVersion('1.0.*')]
|
|
||||||
|
|
||||||
//
|
|
||||||
// In order to sign your assembly you must specify a key to use. Refer to the
|
|
||||||
// Microsoft .NET Framework documentation for more information on assembly signing.
|
|
||||||
//
|
|
||||||
// Use the attributes below to control which key is used for signing.
|
|
||||||
//
|
|
||||||
// Notes:
|
|
||||||
// (*) If no key is specified, the assembly is not signed.
|
|
||||||
// (*) KeyName refers to a key that has been installed in the Crypto Service
|
|
||||||
// Provider (CSP) on your machine. KeyFile refers to a file which contains
|
|
||||||
// a key.
|
|
||||||
// (*) If the KeyFile and the KeyName values are both specified, the
|
|
||||||
// following processing occurs:
|
|
||||||
// (1) If the KeyName can be found in the CSP, that key is used.
|
|
||||||
// (2) If the KeyName does not exist and the KeyFile does exist, the key
|
|
||||||
// in the KeyFile is installed into the CSP and used.
|
|
||||||
// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
|
|
||||||
// When specifying the KeyFile, the location of the KeyFile should be
|
|
||||||
// relative to the project output directory. For example, if your KeyFile is
|
|
||||||
// located in the project directory, you would specify the AssemblyKeyFile
|
|
||||||
// attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
|
|
||||||
// directory is the project directory (the default).
|
|
||||||
// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
|
|
||||||
// documentation for more information on this.
|
|
||||||
//
|
|
||||||
[assembly: AssemblyDelaySign(false)]
|
|
||||||
[assembly: AssemblyKeyFile('')]
|
|
||||||
[assembly: AssemblyKeyName('')]
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dxComnD11;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxRgKeya,
|
|
||||||
dxRegEd,
|
|
||||||
dxCommon;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dxComnD12;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxRgKeya,
|
|
||||||
dxRegEd,
|
|
||||||
dxCommon;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dxComnD13;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxRgKeya,
|
|
||||||
dxRegEd,
|
|
||||||
dxCommon;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dxComnD14;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxRgKeya,
|
|
||||||
dxRegEd,
|
|
||||||
dxCommon;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,37 +0,0 @@
|
|||||||
package dxcomnD5;
|
|
||||||
|
|
||||||
{$R *.RES}
|
|
||||||
{$ALIGN ON}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $00400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
vcl50;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCommon,
|
|
||||||
dxreged,
|
|
||||||
dxrgkeya;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dxcomnd6;
|
|
||||||
|
|
||||||
{$R *.RES}
|
|
||||||
{$ALIGN ON}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $00400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCommon,
|
|
||||||
dxreged,
|
|
||||||
dxrgkeya;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dxComnD7;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxRgKeya,
|
|
||||||
dxRegEd,
|
|
||||||
dxCommon;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,92 +0,0 @@
|
|||||||
package dxComnD8;
|
|
||||||
|
|
||||||
|
|
||||||
{$ALIGN 0}
|
|
||||||
{$ASSERTIONS ON}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO ON}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS ON}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION OFF}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO ON}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST OFF}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
Borland.Vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxDateUtils;
|
|
||||||
|
|
||||||
[assembly: AssemblyDescription('')]
|
|
||||||
[assembly: AssemblyConfiguration('')]
|
|
||||||
[assembly: AssemblyCompany('')]
|
|
||||||
[assembly: AssemblyProduct('')]
|
|
||||||
[assembly: AssemblyCopyright('')]
|
|
||||||
[assembly: AssemblyTrademark('')]
|
|
||||||
[assembly: AssemblyCulture('')]
|
|
||||||
|
|
||||||
|
|
||||||
// The Delphi compiler controls the AssemblyTitleAttribute via the ExeDescription.
|
|
||||||
// You can set this in the IDE via the Project Options.
|
|
||||||
// Manually setting the AssemblyTitle attribute below will override the IDE
|
|
||||||
// setting.
|
|
||||||
// [assembly: AssemblyTitle('')]
|
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// Version information for an assembly consists of the following four values:
|
|
||||||
//
|
|
||||||
// Major Version
|
|
||||||
// Minor Version
|
|
||||||
// Build Number
|
|
||||||
// Revision
|
|
||||||
//
|
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
|
||||||
// by using the '*' as shown below:
|
|
||||||
|
|
||||||
[assembly: AssemblyVersion('1.0.*')]
|
|
||||||
|
|
||||||
//
|
|
||||||
// In order to sign your assembly you must specify a key to use. Refer to the
|
|
||||||
// Microsoft .NET Framework documentation for more information on assembly signing.
|
|
||||||
//
|
|
||||||
// Use the attributes below to control which key is used for signing.
|
|
||||||
//
|
|
||||||
// Notes:
|
|
||||||
// (*) If no key is specified, the assembly is not signed.
|
|
||||||
// (*) KeyName refers to a key that has been installed in the Crypto Service
|
|
||||||
// Provider (CSP) on your machine. KeyFile refers to a file which contains
|
|
||||||
// a key.
|
|
||||||
// (*) If the KeyFile and the KeyName values are both specified, the
|
|
||||||
// following processing occurs:
|
|
||||||
// (1) If the KeyName can be found in the CSP, that key is used.
|
|
||||||
// (2) If the KeyName does not exist and the KeyFile does exist, the key
|
|
||||||
// in the KeyFile is installed into the CSP and used.
|
|
||||||
// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
|
|
||||||
// When specifying the KeyFile, the location of the KeyFile should be
|
|
||||||
// relative to the project output directory. For example, if your KeyFile is
|
|
||||||
// located in the project directory, you would specify the AssemblyKeyFile
|
|
||||||
// attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
|
|
||||||
// directory is the project directory (the default).
|
|
||||||
// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
|
|
||||||
// documentation for more information on this.
|
|
||||||
//
|
|
||||||
[assembly: AssemblyDelaySign(false)]
|
|
||||||
[assembly: AssemblyKeyFile('')]
|
|
||||||
[assembly: AssemblyKeyName('')]
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dxComnD9;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxRgKeya,
|
|
||||||
dxRegEd,
|
|
||||||
dxCommon;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,92 +0,0 @@
|
|||||||
package dxComnD9NET;
|
|
||||||
|
|
||||||
|
|
||||||
{$ALIGN 0}
|
|
||||||
{$ASSERTIONS ON}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO ON}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS ON}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION OFF}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO ON}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST OFF}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCommonLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
Borland.Vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxDateUtils;
|
|
||||||
|
|
||||||
[assembly: AssemblyDescription('')]
|
|
||||||
[assembly: AssemblyConfiguration('')]
|
|
||||||
[assembly: AssemblyCompany('')]
|
|
||||||
[assembly: AssemblyProduct('')]
|
|
||||||
[assembly: AssemblyCopyright('')]
|
|
||||||
[assembly: AssemblyTrademark('')]
|
|
||||||
[assembly: AssemblyCulture('')]
|
|
||||||
|
|
||||||
|
|
||||||
// The Delphi compiler controls the AssemblyTitleAttribute via the ExeDescription.
|
|
||||||
// You can set this in the IDE via the Project Options.
|
|
||||||
// Manually setting the AssemblyTitle attribute below will override the IDE
|
|
||||||
// setting.
|
|
||||||
// [assembly: AssemblyTitle('')]
|
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// Version information for an assembly consists of the following four values:
|
|
||||||
//
|
|
||||||
// Major Version
|
|
||||||
// Minor Version
|
|
||||||
// Build Number
|
|
||||||
// Revision
|
|
||||||
//
|
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
|
||||||
// by using the '*' as shown below:
|
|
||||||
|
|
||||||
[assembly: AssemblyVersion('1.0.*')]
|
|
||||||
|
|
||||||
//
|
|
||||||
// In order to sign your assembly you must specify a key to use. Refer to the
|
|
||||||
// Microsoft .NET Framework documentation for more information on assembly signing.
|
|
||||||
//
|
|
||||||
// Use the attributes below to control which key is used for signing.
|
|
||||||
//
|
|
||||||
// Notes:
|
|
||||||
// (*) If no key is specified, the assembly is not signed.
|
|
||||||
// (*) KeyName refers to a key that has been installed in the Crypto Service
|
|
||||||
// Provider (CSP) on your machine. KeyFile refers to a file which contains
|
|
||||||
// a key.
|
|
||||||
// (*) If the KeyFile and the KeyName values are both specified, the
|
|
||||||
// following processing occurs:
|
|
||||||
// (1) If the KeyName can be found in the CSP, that key is used.
|
|
||||||
// (2) If the KeyName does not exist and the KeyFile does exist, the key
|
|
||||||
// in the KeyFile is installed into the CSP and used.
|
|
||||||
// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
|
|
||||||
// When specifying the KeyFile, the location of the KeyFile should be
|
|
||||||
// relative to the project output directory. For example, if your KeyFile is
|
|
||||||
// located in the project directory, you would specify the AssemblyKeyFile
|
|
||||||
// attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
|
|
||||||
// directory is the project directory (the default).
|
|
||||||
// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
|
|
||||||
// documentation for more information on this.
|
|
||||||
//
|
|
||||||
[assembly: AssemblyDelaySign(false)]
|
|
||||||
[assembly: AssemblyKeyFile('')]
|
|
||||||
[assembly: AssemblyKeyName('')]
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,218 +0,0 @@
|
|||||||
{$B-} { Complete Boolean Evaluation }
|
|
||||||
{$R-} { Range-Checking }
|
|
||||||
{$T-} { Typed @ operator }
|
|
||||||
{$X+} { Extended syntax }
|
|
||||||
{$P+} { Open string params }
|
|
||||||
{$J+} { Writeable structured consts }
|
|
||||||
{$H+} { Use long strings by default }
|
|
||||||
{$Q-} { Overflow checking }
|
|
||||||
|
|
||||||
{$DEFINE DXVER500}
|
|
||||||
|
|
||||||
{$IFNDEF CLR}
|
|
||||||
{$IFNDEF DONTUSEJPEGIMAGE}
|
|
||||||
{$DEFINE USEJPEGIMAGE}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$DEFINE EXPRESSBARS5}
|
|
||||||
|
|
||||||
{$DEFINE VCL}
|
|
||||||
|
|
||||||
{$IFNDEF VER80}
|
|
||||||
{$IFNDEF VER90}
|
|
||||||
{$IFNDEF VER93}
|
|
||||||
{$DEFINE DELPHI3} { Borland Delphi 3.0 }
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER110} { Borland C++Builder 3.0 }
|
|
||||||
{$DEFINE CBUILDER3}
|
|
||||||
{$ObjExportAll On}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER120} { Borland Delphi 4.0 }
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER125} { Borland C++Builder 4.0 }
|
|
||||||
{$DEFINE CBUILDER3}
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE CBUILDER4}
|
|
||||||
{$ObjExportAll On}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER130} { Borland Delphi 5.0 }
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE DELPHI5}
|
|
||||||
{$IFDEF BCB} { Borland C++Builder 5.0 }
|
|
||||||
{$DEFINE CBUILDER3}
|
|
||||||
{$DEFINE CBUILDER4}
|
|
||||||
{$DEFINE CBUILDER5}
|
|
||||||
{$ObjExportAll On}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER140} { Borland Delphi 6.0 }
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE DELPHI5}
|
|
||||||
{$DEFINE DELPHI6}
|
|
||||||
{$IFDEF BCB} { Borland C++Builder 6.0 }
|
|
||||||
{$DEFINE CBUILDER3}
|
|
||||||
{$DEFINE CBUILDER4}
|
|
||||||
{$DEFINE CBUILDER5}
|
|
||||||
{$DEFINE CBUILDER6}
|
|
||||||
{$ObjExportAll On}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER150} { Borland Delphi 7.0 }
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE DELPHI5}
|
|
||||||
{$DEFINE DELPHI6}
|
|
||||||
{$DEFINE DELPHI7}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFNDEF DELPHI6}
|
|
||||||
{$DEFINE MSWINDOWS}
|
|
||||||
{$ENDIF}
|
|
||||||
{$IFDEF LINUX}
|
|
||||||
{$UNDEF MSWINDOWS}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF LINUX}
|
|
||||||
{$DEFINE KYLIX1} { Borland Kylix 1 }
|
|
||||||
{$IFDEF CONDITIONALEXPRESSIONS}
|
|
||||||
{$IF CompilerVersion >= 14}
|
|
||||||
{$DEFINE KYLIX2} { Borland Kylix 2 }
|
|
||||||
{$IFEND}
|
|
||||||
{$IF CompilerVersion >= 14.50}
|
|
||||||
{$DEFINE KYLIX3} { Borland Kylix 3 }
|
|
||||||
{$IFEND}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF CLR} { Borland Delphi.Net }
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE DELPHI5}
|
|
||||||
{$DEFINE DELPHI6}
|
|
||||||
{$DEFINE DELPHI7}
|
|
||||||
{$DEFINE DELPHI8}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER170} { Borland Delphi 9.0 }
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE DELPHI5}
|
|
||||||
{$DEFINE DELPHI6}
|
|
||||||
{$DEFINE DELPHI7}
|
|
||||||
{$DEFINE DELPHI8}
|
|
||||||
{$DEFINE DELPHI9}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER180} { Borland Delphi 10 }
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE DELPHI5}
|
|
||||||
{$DEFINE DELPHI6}
|
|
||||||
{$DEFINE DELPHI7}
|
|
||||||
{$DEFINE DELPHI8}
|
|
||||||
{$DEFINE DELPHI9}
|
|
||||||
{$DEFINE DELPHI10}
|
|
||||||
{$IFDEF BCB} { Borland C++Builder 10 }
|
|
||||||
{$DEFINE CBUILDER3}
|
|
||||||
{$DEFINE CBUILDER4}
|
|
||||||
{$DEFINE CBUILDER5}
|
|
||||||
{$DEFINE CBUILDER6}
|
|
||||||
{$DEFINE CBUILDER10}
|
|
||||||
{$ObjExportAll On}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER185} { Borland Delphi 11 //CodeGear}
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE DELPHI5}
|
|
||||||
{$DEFINE DELPHI6}
|
|
||||||
{$DEFINE DELPHI7}
|
|
||||||
{$DEFINE DELPHI8}
|
|
||||||
{$DEFINE DELPHI9}
|
|
||||||
{$DEFINE DELPHI10}
|
|
||||||
{$DEFINE DELPHI11}
|
|
||||||
{$IFDEF BCB} { Borland C++Builder 11 }
|
|
||||||
{$DEFINE CBUILDER3}
|
|
||||||
{$DEFINE CBUILDER4}
|
|
||||||
{$DEFINE CBUILDER5}
|
|
||||||
{$DEFINE CBUILDER6}
|
|
||||||
{$DEFINE CBUILDER10}
|
|
||||||
{$DEFINE CBUILDER11}
|
|
||||||
{$ObjExportAll On}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER200} { Borland Delphi 12 //CodeGear/Tiburon}
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE DELPHI5}
|
|
||||||
{$DEFINE DELPHI6}
|
|
||||||
{$DEFINE DELPHI7}
|
|
||||||
{$DEFINE DELPHI8}
|
|
||||||
{$DEFINE DELPHI9}
|
|
||||||
{$DEFINE DELPHI10}
|
|
||||||
{$DEFINE DELPHI11}
|
|
||||||
{$DEFINE DELPHI12}
|
|
||||||
{$IFDEF BCB} { Borland C++Builder 12 }
|
|
||||||
{$DEFINE CBUILDER3}
|
|
||||||
{$DEFINE CBUILDER4}
|
|
||||||
{$DEFINE CBUILDER5}
|
|
||||||
{$DEFINE CBUILDER6}
|
|
||||||
{$DEFINE CBUILDER10}
|
|
||||||
{$DEFINE CBUILDER11}
|
|
||||||
{$DEFINE CBUILDER12}
|
|
||||||
{$ObjExportAll On}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF VER210} { Borland Delphi 14 //CodeGear/Weaver}
|
|
||||||
{$DEFINE DELPHI4}
|
|
||||||
{$DEFINE DELPHI5}
|
|
||||||
{$DEFINE DELPHI6}
|
|
||||||
{$DEFINE DELPHI7}
|
|
||||||
{$DEFINE DELPHI8}
|
|
||||||
{$DEFINE DELPHI9}
|
|
||||||
{$DEFINE DELPHI10}
|
|
||||||
{$DEFINE DELPHI11}
|
|
||||||
{$DEFINE DELPHI12}
|
|
||||||
{$DEFINE DELPHI14}
|
|
||||||
{$IFDEF BCB} { Borland C++Builder 14 }
|
|
||||||
{$DEFINE CBUILDER3}
|
|
||||||
{$DEFINE CBUILDER4}
|
|
||||||
{$DEFINE CBUILDER5}
|
|
||||||
{$DEFINE CBUILDER6}
|
|
||||||
{$DEFINE CBUILDER10}
|
|
||||||
{$DEFINE CBUILDER11}
|
|
||||||
{$DEFINE CBUILDER12}
|
|
||||||
{$DEFINE CBUILDER14}
|
|
||||||
{$ObjExportAll On}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
|
|
||||||
{$IFNDEF CLR}
|
|
||||||
{$IFNDEF BCB}
|
|
||||||
{$IFDEF DELPHI6}
|
|
||||||
{$DEFINE REGISTERSHELLCTRLS}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
{$IFDEF DELPHI7}
|
|
||||||
{$WARN UNSAFE_CAST OFF}
|
|
||||||
{$WARN UNSAFE_CODE OFF}
|
|
||||||
{$WARN UNSAFE_TYPE OFF}
|
|
||||||
{$ENDIF}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF REGISTERSHELLCTRLS}
|
|
||||||
{$DEFINE REGISTERCXSHELLCTRLS}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
{$IFDEF DELPHI6}
|
|
||||||
{$WARN SYMBOL_PLATFORM OFF}
|
|
||||||
{$WARN UNIT_PLATFORM OFF}
|
|
||||||
{$ENDIF}
|
|
||||||
@ -1,191 +0,0 @@
|
|||||||
|
|
||||||
{*******************************************************************}
|
|
||||||
{ }
|
|
||||||
{ Developer Express Visual Component Library }
|
|
||||||
{ ExpressCommon routines }
|
|
||||||
{ }
|
|
||||||
{ Copyright (c) 1998-2009 Developer Express Inc. }
|
|
||||||
{ ALL RIGHTS RESERVED }
|
|
||||||
{ }
|
|
||||||
{ The entire contents of this file is protected by U.S. and }
|
|
||||||
{ International Copyright Laws. Unauthorized reproduction, }
|
|
||||||
{ reverse-engineering, and distribution of all or any portion of }
|
|
||||||
{ the code contained in this file is strictly prohibited and may }
|
|
||||||
{ result in severe civil and criminal penalties and will be }
|
|
||||||
{ prosecuted to the maximum extent possible under the law. }
|
|
||||||
{ }
|
|
||||||
{ RESTRICTIONS }
|
|
||||||
{ }
|
|
||||||
{ THE SOURCE CODE CONTAINED WITHIN THIS FILE AND ALL RELATED }
|
|
||||||
{ FILES OR ANY PORTION OF ITS CONTENTS SHALL AT NO TIME BE }
|
|
||||||
{ COPIED, TRANSFERRED, SOLD, DISTRIBUTED, OR OTHERWISE MADE }
|
|
||||||
{ AVAILABLE TO OTHER INDIVIDUALS WITHOUT EXPRESS WRITTEN CONSENT }
|
|
||||||
{ AND PERMISSION FROM DEVELOPER EXPRESS INC. }
|
|
||||||
{ }
|
|
||||||
{ CONSULT THE END USER LICENSE AGREEMENT FOR INFORMATION ON }
|
|
||||||
{ ADDITIONAL RESTRICTIONS. }
|
|
||||||
{ }
|
|
||||||
{*******************************************************************}
|
|
||||||
|
|
||||||
unit dxCommon;
|
|
||||||
|
|
||||||
{$I cxVer.inc}
|
|
||||||
|
|
||||||
interface
|
|
||||||
|
|
||||||
uses
|
|
||||||
Windows;
|
|
||||||
|
|
||||||
type
|
|
||||||
TdxCorner = (coTopLeft, coTopRight, coBottomLeft, coBottomRight);
|
|
||||||
|
|
||||||
function dxDropDownNCHeight: Integer;
|
|
||||||
function GetCornerForRects(const EditRect, DropDownRect: TRect): TdxCorner;
|
|
||||||
function GetHitTestByCorner(ACorner: TdxCorner): Longint;
|
|
||||||
|
|
||||||
procedure DrawCloseButton(DC: HDC; var ARect: TRect; Selected, Pressed: Boolean;
|
|
||||||
ACorner: TdxCorner);
|
|
||||||
procedure DrawSizeGrip(DC: HDC; var ARect: TRect; ACorner: TdxCorner);
|
|
||||||
|
|
||||||
implementation
|
|
||||||
|
|
||||||
uses
|
|
||||||
Classes;
|
|
||||||
|
|
||||||
function dxDropDownNCHeight: Integer;
|
|
||||||
begin
|
|
||||||
Result := 2 + GetSystemMetrics(SM_CYHSCROLL);
|
|
||||||
if Result < GetSystemMetrics(SM_CYSIZE) then
|
|
||||||
Result := GetSystemMetrics(SM_CYSIZE);
|
|
||||||
Inc(Result);
|
|
||||||
end;
|
|
||||||
|
|
||||||
function GetCornerForRects(const EditRect, DropDownRect: TRect): TdxCorner;
|
|
||||||
const
|
|
||||||
Corners: array[Boolean, Boolean] of TdxCorner =
|
|
||||||
((coTopLeft, coBottomLeft), (coTopRight, coBottomRight));
|
|
||||||
begin
|
|
||||||
Result :=
|
|
||||||
Corners[EditRect.Left < DropDownRect.Right, EditRect.Bottom < DropDownRect.Bottom];
|
|
||||||
end;
|
|
||||||
|
|
||||||
function GetHitTestByCorner(ACorner: TdxCorner): Longint;
|
|
||||||
const
|
|
||||||
HitTests: array[TdxCorner] of Longint =
|
|
||||||
(HTTOPLEFT, HTTOPRIGHT, HTBOTTOMLEFT, HTBOTTOMRIGHT);
|
|
||||||
begin
|
|
||||||
Result := HitTests[ACorner];
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure DrawCloseButton(DC: HDC; var ARect: TRect; Selected, Pressed: Boolean;
|
|
||||||
ACorner: TdxCorner);
|
|
||||||
const
|
|
||||||
Borders: array[Boolean] of Longint = (BDR_RAISEDINNER, BDR_SUNKENOUTER);
|
|
||||||
States: array[Boolean] of Longint = (0, DFCS_PUSHED);
|
|
||||||
var
|
|
||||||
Delta, SX, SY: Integer;
|
|
||||||
Rgn1, Rgn2: HRGN;
|
|
||||||
ClipRgnExists: Boolean;
|
|
||||||
begin
|
|
||||||
SX := GetSystemMetrics(SM_CXSIZE);
|
|
||||||
Delta := 1;//Byte(SX = 18);
|
|
||||||
SY := GetSystemMetrics(SM_CXSIZE) + Delta;
|
|
||||||
with ARect do
|
|
||||||
begin
|
|
||||||
if ACorner in [coTopRight, coBottomRight] then
|
|
||||||
Right := Left + SX
|
|
||||||
else
|
|
||||||
Left := Right - SX;
|
|
||||||
Top := (Top + Bottom - SY) div 2;
|
|
||||||
if ACorner in [coBottomLeft, coBottomRight] then Inc(Top, Delta);
|
|
||||||
Bottom := Top + SY;
|
|
||||||
end;
|
|
||||||
InflateRect(ARect, -1, -2);
|
|
||||||
if Selected then
|
|
||||||
DrawEdge(DC, ARect, Borders[Pressed], BF_RECT)
|
|
||||||
else
|
|
||||||
FrameRect(DC, ARect, GetSysColorBrush(COLOR_BTNFACE));
|
|
||||||
InflateRect(ARect, -1, -1);
|
|
||||||
FrameRect(DC, ARect, GetSysColorBrush(COLOR_BTNFACE));
|
|
||||||
|
|
||||||
Rgn1 := CreateRectRgn(0, 0, 0, 0);
|
|
||||||
ClipRgnExists := GetClipRgn(DC, Rgn1) = 1;
|
|
||||||
with ARect do
|
|
||||||
Rgn2 := CreateRectRgn(Left + 1, Top + 1, Right - 1, Bottom - 1);
|
|
||||||
SelectClipRgn(DC, Rgn2);
|
|
||||||
DeleteObject(Rgn2);
|
|
||||||
InflateRect(ARect, 1, 1);
|
|
||||||
if SX <> 22 then Inc(ARect.Top, Delta);
|
|
||||||
DrawFrameControl(DC, ARect, DFC_CAPTION, DFCS_CAPTIONCLOSE or DFCS_FLAT or States[Pressed]);
|
|
||||||
if SX <> 22 then Dec(ARect.Top, Delta);
|
|
||||||
if ClipRgnExists then
|
|
||||||
SelectClipRgn(DC, Rgn1)
|
|
||||||
else
|
|
||||||
SelectClipRgn(DC, 0);
|
|
||||||
DeleteObject(Rgn1);
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure DrawSizeGrip(DC: HDC; var ARect: TRect; ACorner: TdxCorner);
|
|
||||||
const
|
|
||||||
Offset = 2;
|
|
||||||
var
|
|
||||||
MirrorX, MirrorY: Boolean;
|
|
||||||
R: TRect;
|
|
||||||
X, Y: Integer;
|
|
||||||
MDC: HDC;
|
|
||||||
PrevB: HBITMAP;
|
|
||||||
begin
|
|
||||||
with ARect do
|
|
||||||
begin
|
|
||||||
if ACorner in [coTopRight, coBottomRight] then
|
|
||||||
Left := Right - GetSystemMetrics(SM_CXVSCROLL)
|
|
||||||
else
|
|
||||||
Right := Left + GetSystemMetrics(SM_CXVSCROLL);
|
|
||||||
if ACorner in [coBottomLeft, coBottomRight] then
|
|
||||||
Top := Bottom - GetSystemMetrics(SM_CYHSCROLL)
|
|
||||||
else
|
|
||||||
Bottom := Top + GetSystemMetrics(SM_CYHSCROLL);
|
|
||||||
MirrorX := ACorner in [coTopLeft, coBottomLeft];
|
|
||||||
MirrorY := ACorner in [coTopLeft, coTopRight];
|
|
||||||
end;
|
|
||||||
R := ARect;
|
|
||||||
with R do
|
|
||||||
begin
|
|
||||||
if MirrorX then
|
|
||||||
begin
|
|
||||||
Inc(Left, Offset);
|
|
||||||
FillRect(DC, Rect(ARect.Left, Top, Left, Bottom), COLOR_BTNFACE + 1);
|
|
||||||
end
|
|
||||||
else
|
|
||||||
begin
|
|
||||||
Dec(Right, Offset);
|
|
||||||
FillRect(DC, Rect(Right, Top, ARect.Right, Bottom), COLOR_BTNFACE + 1);
|
|
||||||
end;
|
|
||||||
if MirrorY then
|
|
||||||
begin
|
|
||||||
Inc(Top, Offset);
|
|
||||||
FillRect(DC, Rect(Left, ARect.Top, Right, Top), COLOR_BTNFACE + 1);
|
|
||||||
end
|
|
||||||
else
|
|
||||||
begin
|
|
||||||
Dec(Bottom, Offset);
|
|
||||||
FillRect(DC, Rect(Left, Bottom, Right, ARect.Bottom), COLOR_BTNFACE + 1);
|
|
||||||
end;
|
|
||||||
X := Left;
|
|
||||||
Y := Top;
|
|
||||||
OffsetRect(R, -Left, -Top);
|
|
||||||
end;
|
|
||||||
|
|
||||||
MDC := CreateCompatibleDC(DC);
|
|
||||||
PrevB := SelectObject(MDC, CreateCompatibleBitmap(DC, R.Right, R.Bottom));
|
|
||||||
DrawFrameControl(MDC, R, DFC_SCROLL, DFCS_SCROLLSIZEGRIP);
|
|
||||||
with R do
|
|
||||||
StretchBlt(DC, X, Y, Right, Bottom,
|
|
||||||
MDC, Byte(MirrorX) * (Right - 1), Byte(MirrorY) * (Bottom - 1),
|
|
||||||
(2 * Byte(not MirrorX) - 1) * Right,
|
|
||||||
(2 * Byte(not MirrorY) - 1) * Bottom, SRCCOPY);
|
|
||||||
DeleteObject(SelectObject(MDC, PrevB));
|
|
||||||
DeleteDC(MDC);
|
|
||||||
end;
|
|
||||||
|
|
||||||
end.
|
|
||||||
@ -1,415 +0,0 @@
|
|||||||
object frmdxLibREgPathEditor: TfrmdxLibREgPathEditor
|
|
||||||
Left = 225
|
|
||||||
Top = 106
|
|
||||||
Width = 395
|
|
||||||
Height = 365
|
|
||||||
ActiveControl = TreeView
|
|
||||||
BorderIcons = [biSystemMenu, biMaximize]
|
|
||||||
Caption = 'Developer Express Registry path property editor'
|
|
||||||
Color = clBtnFace
|
|
||||||
Icon.Data = {
|
|
||||||
0000010001001010100000000000280100001600000028000000100000002000
|
|
||||||
00000100040000000000C0000000000000000000000000000000000000000000
|
|
||||||
000000008000008000000080800080000000800080008080000080808000C0C0
|
|
||||||
C0000000FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF000000
|
|
||||||
0073701919190000073700000000000073700091910000073708000000000073
|
|
||||||
708077770000073700078888000073708077780880003708077780B080007000
|
|
||||||
78888888800008078800888070000078004000800000078078FF8F8F00000807
|
|
||||||
880000007000007888888807000007888888707000007000000007000000FC00
|
|
||||||
0000F8000000F0010000E0030000C00700008007000000030000000300000003
|
|
||||||
000000030000000300000007000000070000000F0000001F0000003F0000}
|
|
||||||
OldCreateOrder = True
|
|
||||||
Position = poScreenCenter
|
|
||||||
OnCreate = FormCreate
|
|
||||||
OnDestroy = FormDestroy
|
|
||||||
PixelsPerInch = 96
|
|
||||||
TextHeight = 13
|
|
||||||
AutoScroll = False
|
|
||||||
object Panel: TPanel
|
|
||||||
Left = 0
|
|
||||||
Top = 289
|
|
||||||
Width = 387
|
|
||||||
Height = 49
|
|
||||||
Align = alBottom
|
|
||||||
BevelOuter = bvNone
|
|
||||||
TabOrder = 0
|
|
||||||
object lbRegistry: TLabel
|
|
||||||
Left = 4
|
|
||||||
Top = 6
|
|
||||||
Width = 5
|
|
||||||
Height = 13
|
|
||||||
Font.Charset = DEFAULT_CHARSET
|
|
||||||
Font.Color = clBlack
|
|
||||||
Font.Height = -11
|
|
||||||
Font.Name = 'MS Sans Serif'
|
|
||||||
Font.Style = [fsBold]
|
|
||||||
ParentFont = False
|
|
||||||
end
|
|
||||||
object bOk: TButton
|
|
||||||
Left = 236
|
|
||||||
Top = 25
|
|
||||||
Width = 72
|
|
||||||
Height = 22
|
|
||||||
Caption = '&OK'
|
|
||||||
Default = True
|
|
||||||
ModalResult = 1
|
|
||||||
TabOrder = 2
|
|
||||||
end
|
|
||||||
object bCancel: TButton
|
|
||||||
Left = 312
|
|
||||||
Top = 25
|
|
||||||
Width = 72
|
|
||||||
Height = 22
|
|
||||||
Cancel = True
|
|
||||||
Caption = '&Cancel'
|
|
||||||
ModalResult = 2
|
|
||||||
TabOrder = 3
|
|
||||||
end
|
|
||||||
object bNew: TButton
|
|
||||||
Left = 3
|
|
||||||
Top = 25
|
|
||||||
Width = 72
|
|
||||||
Height = 22
|
|
||||||
Caption = '&New'
|
|
||||||
TabOrder = 0
|
|
||||||
OnClick = bNewClick
|
|
||||||
end
|
|
||||||
object bDelete: TButton
|
|
||||||
Left = 80
|
|
||||||
Top = 25
|
|
||||||
Width = 72
|
|
||||||
Height = 22
|
|
||||||
Caption = '&Delete'
|
|
||||||
TabOrder = 1
|
|
||||||
OnClick = bDeleteClick
|
|
||||||
end
|
|
||||||
end
|
|
||||||
object TreeView: TTreeView
|
|
||||||
Left = 0
|
|
||||||
Top = 0
|
|
||||||
Width = 387
|
|
||||||
Height = 289
|
|
||||||
Align = alClient
|
|
||||||
HideSelection = False
|
|
||||||
Images = ImageList
|
|
||||||
Indent = 21
|
|
||||||
ReadOnly = True
|
|
||||||
TabOrder = 1
|
|
||||||
OnChange = TreeViewChange
|
|
||||||
OnCollapsed = TreeViewCollapsed
|
|
||||||
OnExpanded = TreeViewExpanded
|
|
||||||
OnGetImageIndex = TreeViewGetImageIndex
|
|
||||||
OnGetSelectedIndex = TreeViewGetSelectedIndex
|
|
||||||
end
|
|
||||||
object ImageList: TImageList
|
|
||||||
Width = 18
|
|
||||||
Left = 114
|
|
||||||
Top = 50
|
|
||||||
Bitmap = {
|
|
||||||
494C010102000500040012001000FFFFFFFFFF00FFFFFFFFFFFFFFFF424D3600
|
|
||||||
0000000000003600000028000000480000002000000001002000000000000024
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000080808000808080008080
|
|
||||||
8000808080008080800080808000808080008080800080808000808080008080
|
|
||||||
8000808080008080800080808000000000000000000000000000000000000000
|
|
||||||
0000000000008080800080808000808080008080800080808000808080008080
|
|
||||||
8000808080008080800080808000808080008080800000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
00000000000000000000000000000000000000000000808080000000000000FF
|
|
||||||
FF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FF
|
|
||||||
FF00C0C0C00000FFFF0080808000000000000000000000000000000000000000
|
|
||||||
000000000000808080000000000000FFFF00C0C0C00000FFFF00C0C0C00000FF
|
|
||||||
FF00C0C0C00000FFFF00C0C0C00000FFFF008080800000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
000000000000000000000000000000000000000000008080800000000000C0C0
|
|
||||||
C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0
|
|
||||||
C00000FFFF00C0C0C00080808000000000000000000000000000000000000000
|
|
||||||
0000808080000000000000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0
|
|
||||||
C00000FFFF00C0C0C00000FFFF00C0C0C0000000000080808000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
00000000000000000000000000000000000000000000808080000000000000FF
|
|
||||||
FF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FF
|
|
||||||
FF00C0C0C00000FFFF0080808000000000000000000000000000000000000000
|
|
||||||
00008080800000000000C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FF
|
|
||||||
FF00C0C0C00000FFFF00C0C0C000808080000000000080808000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
000000000000000000000000000000000000000000008080800000000000C0C0
|
|
||||||
C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0
|
|
||||||
C00000FFFF00C0C0C00080808000000000000000000000000000000000008080
|
|
||||||
800000000000C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0
|
|
||||||
C00000FFFF00C0C0C00000FFFF00000000008080800080808000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
00000000000000000000000000000000000000000000808080000000000000FF
|
|
||||||
FF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FF
|
|
||||||
FF00C0C0C00000FFFF0080808000000000000000000000000000000000008080
|
|
||||||
8000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
000000000000000000008080800000000000C0C0C00080808000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
000000000000000000000000000000000000000000008080800000000000C0C0
|
|
||||||
C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0
|
|
||||||
C00000FFFF00C0C0C00080808000000000000000000000000000000000008080
|
|
||||||
8000808080008080800080808000808080008080800080808000808080008080
|
|
||||||
80008080800080808000808080008080800000FFFF0080808000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
00000000000000000000000000000000000000000000808080000000000000FF
|
|
||||||
FF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FF
|
|
||||||
FF00C0C0C00000FFFF0080808000000000000000000000000000000000000000
|
|
||||||
00008080800000000000C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00000FF
|
|
||||||
FF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0C00080808000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000080808000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000080808000000000000000000000000000000000000000
|
|
||||||
0000808080000000000000FFFF00C0C0C00000FFFF00C0C0C00000FFFF00C0C0
|
|
||||||
C000000000000000000000000000000000000000000080808000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
000000000000000000000000000000000000000000008080800000FFFF00C0C0
|
|
||||||
C00000FFFF00C0C0C00000FFFF00C0C0C00000FFFF0080808000808080008080
|
|
||||||
8000808080008080800080808000000000000000000000000000000000000000
|
|
||||||
00008080800000000000C0C0C00000FFFF00C0C0C00000FFFF00C0C0C0000000
|
|
||||||
0000808080008080800080808000808080008080800080808000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
00000000000000000000000000000000000000000000000000008080800000FF
|
|
||||||
FF00C0C0C00000FFFF00C0C0C00000FFFF008080800000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000008080800000000000000000000000000000000000000000008080
|
|
||||||
8000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000008080
|
|
||||||
8000808080008080800080808000808080000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000080808000808080008080800080808000808080000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
000000000000000000000000000000000000424D3E000000000000003E000000
|
|
||||||
2800000048000000200000000100010000000000800100000000000000000000
|
|
||||||
000000000000000000000000FFFFFF0000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
0000000000000000000000000000000000000000000000000000000000000000
|
|
||||||
00000000000000000000000000000000FFFFFFFFF000000000000000FFFFFFFF
|
|
||||||
F000000000000000C000FC0010000000000000008000F8001000000000000000
|
|
||||||
A000FA001000000000000000A000F4001000000000000000A000F40010000000
|
|
||||||
00000000A000E8001000000000000000A000EFFC1000000000000000A000E000
|
|
||||||
1000000000000000A000F4001000000000000000BFFCF40F9000000000000000
|
|
||||||
8001F4103000000000000000C07FFBEFF000000000000000E0FFFC1FF0000000
|
|
||||||
00000000FFFFFFFFF000000000000000}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@ -1,271 +0,0 @@
|
|||||||
|
|
||||||
{*******************************************************************}
|
|
||||||
{ }
|
|
||||||
{ Developer Express Visual Component Library }
|
|
||||||
{ Express Registry path property editor }
|
|
||||||
{ }
|
|
||||||
{ Copyright (c) 1998-2009 Developer Express Inc. }
|
|
||||||
{ ALL RIGHTS RESERVED }
|
|
||||||
{ }
|
|
||||||
{ The entire contents of this file is protected by U.S. and }
|
|
||||||
{ International Copyright Laws. Unauthorized reproduction, }
|
|
||||||
{ reverse-engineering, and distribution of all or any portion of }
|
|
||||||
{ the code contained in this file is strictly prohibited and may }
|
|
||||||
{ result in severe civil and criminal penalties and will be }
|
|
||||||
{ prosecuted to the maximum extent possible under the law. }
|
|
||||||
{ }
|
|
||||||
{ RESTRICTIONS }
|
|
||||||
{ }
|
|
||||||
{ THE SOURCE CODE CONTAINED WITHIN THIS FILE AND ALL RELATED }
|
|
||||||
{ FILES OR ANY PORTION OF ITS CONTENTS SHALL AT NO TIME BE }
|
|
||||||
{ COPIED, TRANSFERRED, SOLD, DISTRIBUTED, OR OTHERWISE MADE }
|
|
||||||
{ AVAILABLE TO OTHER INDIVIDUALS WITHOUT EXPRESS WRITTEN CONSENT }
|
|
||||||
{ AND PERMISSION FROM DEVELOPER EXPRESS INC. }
|
|
||||||
{ }
|
|
||||||
{ CONSULT THE END USER LICENSE AGREEMENT FOR INFORMATION ON }
|
|
||||||
{ ADDITIONAL RESTRICTIONS. }
|
|
||||||
{ }
|
|
||||||
{*******************************************************************}
|
|
||||||
|
|
||||||
unit dxRegEd;
|
|
||||||
|
|
||||||
{$I cxVer.inc}
|
|
||||||
|
|
||||||
interface
|
|
||||||
|
|
||||||
uses
|
|
||||||
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
||||||
StdCtrls, ComCtrls, ExtCtrls, Registry, ImgList;
|
|
||||||
|
|
||||||
type
|
|
||||||
TfrmdxLibREgPathEditor = class(TForm)
|
|
||||||
Panel: TPanel;
|
|
||||||
TreeView: TTreeView;
|
|
||||||
bOk: TButton;
|
|
||||||
bCancel: TButton;
|
|
||||||
bNew: TButton;
|
|
||||||
ImageList: TImageList;
|
|
||||||
lbRegistry: TLabel;
|
|
||||||
bDelete: TButton;
|
|
||||||
procedure FormCreate(Sender: TObject);
|
|
||||||
procedure FormDestroy(Sender: TObject);
|
|
||||||
procedure TreeViewChange(Sender: TObject; Node: TTreeNode);
|
|
||||||
procedure bNewClick(Sender: TObject);
|
|
||||||
procedure TreeViewGetImageIndex(Sender: TObject; Node: TTreeNode);
|
|
||||||
procedure TreeViewGetSelectedIndex(Sender: TObject; Node: TTreeNode);
|
|
||||||
procedure TreeViewExpanded(Sender: TObject; Node: TTreeNode);
|
|
||||||
procedure TreeViewCollapsed(Sender: TObject; Node: TTreeNode);
|
|
||||||
procedure bDeleteClick(Sender: TObject);
|
|
||||||
private
|
|
||||||
reg : TRegistry;
|
|
||||||
function GetFullText(Node : TTreeNode) : String;
|
|
||||||
procedure WMGetMinMaxInfo(var Message : TWMGetMinMaxInfo); message WM_GETMINMAXINFO;
|
|
||||||
public
|
|
||||||
end;
|
|
||||||
|
|
||||||
function dxGetRegistryPath(Var APath : String) : Boolean;
|
|
||||||
|
|
||||||
implementation
|
|
||||||
|
|
||||||
uses
|
|
||||||
dxrgkeya;
|
|
||||||
|
|
||||||
var
|
|
||||||
ATempPath : String;
|
|
||||||
|
|
||||||
function dxGetRegistryPath(Var APath : String) : Boolean;
|
|
||||||
var
|
|
||||||
AForm : TfrmdxLibREgPathEditor;
|
|
||||||
begin
|
|
||||||
if (APath <> '') and (APath[1] = '\') then
|
|
||||||
ATempPath := Copy(APath, 2, 1000)
|
|
||||||
else ATempPath := APath;
|
|
||||||
AForm := TfrmdxLibREgPathEditor.Create(Nil);
|
|
||||||
AForm.ShowModal;
|
|
||||||
Result := AForm.ModalResult = mrOk;
|
|
||||||
if (Result) then
|
|
||||||
APath := AForm.lbRegistry.Caption;
|
|
||||||
AForm.Free;
|
|
||||||
end;
|
|
||||||
|
|
||||||
{$R *.DFM}
|
|
||||||
function TfrmdxLibREgPathEditor.GetFullText(Node : TTreeNode) : String;
|
|
||||||
begin
|
|
||||||
if(Node = nil) then
|
|
||||||
begin
|
|
||||||
Result := '';
|
|
||||||
exit;
|
|
||||||
end;
|
|
||||||
Result := Node.Text;
|
|
||||||
while Node.Parent <> nil do
|
|
||||||
begin
|
|
||||||
Node := Node.Parent;
|
|
||||||
Result := Node.Text + '\' + Result;
|
|
||||||
end;
|
|
||||||
Result := '\' + Result;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.FormCreate(Sender: TObject);
|
|
||||||
var
|
|
||||||
Sts : TStrings;
|
|
||||||
i : Integer;
|
|
||||||
|
|
||||||
procedure FillRegistry(Node : TTreeNode; APath, ASt : String);
|
|
||||||
var
|
|
||||||
ANode : TTreeNode;
|
|
||||||
i : Integer;
|
|
||||||
ASts : TStrings;
|
|
||||||
Areg : TRegistry;
|
|
||||||
begin
|
|
||||||
ASts := TStringList.Create;
|
|
||||||
try
|
|
||||||
AReg := TRegistry.Create;
|
|
||||||
try
|
|
||||||
APath := APath + '\' + ASt;
|
|
||||||
AReg.OpenKey(APath, False);
|
|
||||||
AReg.GetKeyNames(ASts);
|
|
||||||
ANode := TreeView.Items.AddChild(Node, ASt);
|
|
||||||
if CompareText(APath, ATempPath) = 0 then
|
|
||||||
ANode.Selected := True;
|
|
||||||
finally
|
|
||||||
AReg.Free;
|
|
||||||
end;
|
|
||||||
for i := 0 to ASts.Count - 1 do
|
|
||||||
FillRegistry(ANode, APath, ASts[i]);
|
|
||||||
finally
|
|
||||||
ASts.Free;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
|
|
||||||
var
|
|
||||||
ANode : TTreeNode;
|
|
||||||
begin
|
|
||||||
{$IFDEF DELPHI9}
|
|
||||||
PopupMode := pmAuto;
|
|
||||||
{$ENDIF}
|
|
||||||
reg := TRegistry.Create;
|
|
||||||
reg.OpenKey('Software', False);
|
|
||||||
Sts := TStringList.Create;
|
|
||||||
reg.GetKeyNames(Sts);
|
|
||||||
TreeView.Items.BeginUpdate;
|
|
||||||
try
|
|
||||||
TreeView.Items.Clear;
|
|
||||||
ANode := TreeView.Items.Add(nil, 'Software');
|
|
||||||
for i := 0 to Sts.Count - 1 do
|
|
||||||
FillRegistry(ANode, 'Software', Sts[i]);
|
|
||||||
if TreeView.Selected = nil then
|
|
||||||
begin
|
|
||||||
TreeView.Items[0].Expand(False);
|
|
||||||
TreeView.Selected := TreeView.Items[0];
|
|
||||||
end;
|
|
||||||
finally
|
|
||||||
TreeView.Items.EndUpdate;
|
|
||||||
TreeView.Selected.MakeVisible;
|
|
||||||
Sts.Free;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.FormDestroy(Sender: TObject);
|
|
||||||
begin
|
|
||||||
reg.Free;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.TreeViewChange(Sender: TObject;
|
|
||||||
Node: TTreeNode);
|
|
||||||
begin
|
|
||||||
if (Node <> nil) then
|
|
||||||
lbRegistry.Caption := GetFulltext(Node)
|
|
||||||
else lbRegistry.Caption := '';
|
|
||||||
bNew.Enabled := (TreeView.Selected <> nil);
|
|
||||||
bDelete.Enabled := (TreeView.Selected <> nil) and (TreeView.Selected.Parent <> nil);
|
|
||||||
bOk.Enabled := bDelete.Enabled;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.bNewClick(Sender: TObject);
|
|
||||||
var
|
|
||||||
AReg : TRegistry;
|
|
||||||
St : String;
|
|
||||||
Node : TTreeNode;
|
|
||||||
begin
|
|
||||||
if(TreeView.Selected = Nil) then exit;
|
|
||||||
AReg := TRegistry.Create;
|
|
||||||
AReg.OpenKey(GetFullText(TreeView.Selected), False);
|
|
||||||
St := dxGetNewRegistryKey;
|
|
||||||
if(St <> '') then
|
|
||||||
begin
|
|
||||||
if(AReg.CreateKey(St)) then
|
|
||||||
begin
|
|
||||||
Node := TreeView.Items.AddChild(TreeView.Selected, St);
|
|
||||||
Node.Selected := True;
|
|
||||||
Node.MakeVisible;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
AReg.Free;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.TreeViewGetImageIndex(Sender: TObject;
|
|
||||||
Node: TTreeNode);
|
|
||||||
begin
|
|
||||||
if Node.HasChildren and Node.Expanded then
|
|
||||||
Node.ImageIndex := 1
|
|
||||||
else Node.ImageIndex := 0;
|
|
||||||
Node.SelectedIndex := Node.ImageIndex;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.TreeViewGetSelectedIndex(Sender: TObject;
|
|
||||||
Node: TTreeNode);
|
|
||||||
begin
|
|
||||||
TreeViewGetImageIndex(Sender, Node);
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.TreeViewExpanded(Sender: TObject;
|
|
||||||
Node: TTreeNode);
|
|
||||||
begin
|
|
||||||
TreeView.Refresh;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.TreeViewCollapsed(Sender: TObject;
|
|
||||||
Node: TTreeNode);
|
|
||||||
begin
|
|
||||||
TreeView.Refresh;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.bDeleteClick(Sender: TObject);
|
|
||||||
|
|
||||||
function DeleteNode(ANode : TTreeNode) : Boolean;
|
|
||||||
var
|
|
||||||
AReg : TRegistry;
|
|
||||||
begin
|
|
||||||
Result := True;
|
|
||||||
while ANode.Count > 0 do
|
|
||||||
begin
|
|
||||||
Result := DeleteNode(ANode.Item[0]);
|
|
||||||
if not Result then
|
|
||||||
Break;
|
|
||||||
end;
|
|
||||||
if Result then
|
|
||||||
begin
|
|
||||||
AReg := TRegistry.Create;
|
|
||||||
Result := AReg.DeleteKey(GetFullText(ANode));
|
|
||||||
if Result then
|
|
||||||
ANode.Free;
|
|
||||||
AReg.Free;
|
|
||||||
end;
|
|
||||||
end;
|
|
||||||
|
|
||||||
begin
|
|
||||||
if(TreeView.Selected = Nil) or (TreeView.Selected.Parent = Nil) then exit;
|
|
||||||
if (MessageBox(self.Handle, 'Are you sure you want delete this key?',
|
|
||||||
'Confirm Key Delete', MB_ICONWARNING or MB_YESNO) = IDYES)
|
|
||||||
and (DeleteNode(TreeView.Selected)) then
|
|
||||||
TreeViewChange(Sender, TreeView.Selected)
|
|
||||||
else FormCreate(nil);
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxLibREgPathEditor.WMGetMinMaxInfo(var Message : TWMGetMinMaxInfo);
|
|
||||||
begin
|
|
||||||
Message.MinMaxInfo^.ptMinTrackSize := Point(395, 365);
|
|
||||||
inherited;
|
|
||||||
end;
|
|
||||||
|
|
||||||
end.
|
|
||||||
@ -1,51 +0,0 @@
|
|||||||
object frmdxAddNewRegKey: TfrmdxAddNewRegKey
|
|
||||||
Left = 195
|
|
||||||
Top = 106
|
|
||||||
BorderIcons = [biSystemMenu]
|
|
||||||
BorderStyle = bsDialog
|
|
||||||
Caption = 'Add a new registry key'
|
|
||||||
ClientHeight = 84
|
|
||||||
ClientWidth = 279
|
|
||||||
Color = clBtnFace
|
|
||||||
OldCreateOrder = True
|
|
||||||
Position = poScreenCenter
|
|
||||||
PixelsPerInch = 120
|
|
||||||
TextHeight = 16
|
|
||||||
AutoScroll = False
|
|
||||||
object lblName: TLabel
|
|
||||||
Left = 2
|
|
||||||
Top = 15
|
|
||||||
Width = 37
|
|
||||||
Height = 16
|
|
||||||
Caption = 'Name'
|
|
||||||
end
|
|
||||||
object Edit: TEdit
|
|
||||||
Left = 66
|
|
||||||
Top = 10
|
|
||||||
Width = 210
|
|
||||||
Height = 24
|
|
||||||
TabOrder = 0
|
|
||||||
OnChange = EditChange
|
|
||||||
end
|
|
||||||
object bOk: TButton
|
|
||||||
Left = 90
|
|
||||||
Top = 49
|
|
||||||
Width = 88
|
|
||||||
Height = 27
|
|
||||||
Caption = '&OK'
|
|
||||||
Default = True
|
|
||||||
Enabled = False
|
|
||||||
ModalResult = 1
|
|
||||||
TabOrder = 1
|
|
||||||
end
|
|
||||||
object bCancel: TButton
|
|
||||||
Left = 187
|
|
||||||
Top = 49
|
|
||||||
Width = 89
|
|
||||||
Height = 27
|
|
||||||
Cancel = True
|
|
||||||
Caption = '&Cancel'
|
|
||||||
ModalResult = 2
|
|
||||||
TabOrder = 2
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@ -1,71 +0,0 @@
|
|||||||
|
|
||||||
{*******************************************************************}
|
|
||||||
{ }
|
|
||||||
{ Developer Express Visual Component Library }
|
|
||||||
{ Express Regisry path property editor }
|
|
||||||
{ }
|
|
||||||
{ Copyright (c) 1998-2009 Developer Express Inc. }
|
|
||||||
{ ALL RIGHTS RESERVED }
|
|
||||||
{ }
|
|
||||||
{ The entire contents of this file is protected by U.S. and }
|
|
||||||
{ International Copyright Laws. Unauthorized reproduction, }
|
|
||||||
{ reverse-engineering, and distribution of all or any portion of }
|
|
||||||
{ the code contained in this file is strictly prohibited and may }
|
|
||||||
{ result in severe civil and criminal penalties and will be }
|
|
||||||
{ prosecuted to the maximum extent possible under the law. }
|
|
||||||
{ }
|
|
||||||
{ RESTRICTIONS }
|
|
||||||
{ }
|
|
||||||
{ THE SOURCE CODE CONTAINED WITHIN THIS FILE AND ALL RELATED }
|
|
||||||
{ FILES OR ANY PORTION OF ITS CONTENTS SHALL AT NO TIME BE }
|
|
||||||
{ COPIED, TRANSFERRED, SOLD, DISTRIBUTED, OR OTHERWISE MADE }
|
|
||||||
{ AVAILABLE TO OTHER INDIVIDUALS WITHOUT EXPRESS WRITTEN CONSENT }
|
|
||||||
{ AND PERMISSION FROM DEVELOPER EXPRESS INC. }
|
|
||||||
{ }
|
|
||||||
{ CONSULT THE END USER LICENSE AGREEMENT FOR INFORMATION ON }
|
|
||||||
{ ADDITIONAL RESTRICTIONS. }
|
|
||||||
{ }
|
|
||||||
{*******************************************************************}
|
|
||||||
|
|
||||||
unit dxRgKeya;
|
|
||||||
|
|
||||||
interface
|
|
||||||
|
|
||||||
uses
|
|
||||||
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
||||||
StdCtrls;
|
|
||||||
|
|
||||||
type
|
|
||||||
TfrmdxAddNewRegKey = class(TForm)
|
|
||||||
Edit: TEdit;
|
|
||||||
lblName: TLabel;
|
|
||||||
bOk: TButton;
|
|
||||||
bCancel: TButton;
|
|
||||||
procedure EditChange(Sender: TObject);
|
|
||||||
private
|
|
||||||
public
|
|
||||||
end;
|
|
||||||
|
|
||||||
function dxGetNewRegistryKey : String;
|
|
||||||
|
|
||||||
implementation
|
|
||||||
|
|
||||||
{$R *.DFM}
|
|
||||||
function dxGetNewRegistryKey : String;
|
|
||||||
var
|
|
||||||
AForm : TfrmdxAddNewRegKey;
|
|
||||||
begin
|
|
||||||
AForm := TfrmdxAddNewRegKey.Create(nil);
|
|
||||||
AForm.ShowModal;
|
|
||||||
if(AForm.ModalResult = mrOK) then
|
|
||||||
Result := AForm.Edit.Text
|
|
||||||
else Result := '';
|
|
||||||
AForm.Free;
|
|
||||||
end;
|
|
||||||
|
|
||||||
procedure TfrmdxAddNewRegKey.EditChange(Sender: TObject);
|
|
||||||
begin
|
|
||||||
bOk.Enabled := Edit.Text <> '';
|
|
||||||
end;
|
|
||||||
|
|
||||||
end.
|
|
||||||
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.10.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dcldxCoreC10.bpl
|
|
||||||
OBJFILES = dxCoreReg.obj \
|
|
||||||
dcldxCoreC10.obj
|
|
||||||
MAINSOURCE = dcldxCoreC10.cpp
|
|
||||||
RESFILES = dcldxCoreC10.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi designide.bpi dxCoreC10.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M -LUdclstd -LUdcldb
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpd
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dcldxCoreC10.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEPACKAGE("designide.bpi");
|
|
||||||
USEPACKAGE("dxCoreC10.bpi");
|
|
||||||
USEUNIT("dxCoreReg.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.11.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dcldxCoreC11.bpl
|
|
||||||
OBJFILES = dxCoreReg.obj \
|
|
||||||
dcldxCoreC11.obj
|
|
||||||
MAINSOURCE = dcldxCoreC11.cpp
|
|
||||||
RESFILES = dcldxCoreC11.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi designide.bpi dxCoreC11.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M -LUdclstd -LUdcldb
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpd
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dcldxCoreC11.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEPACKAGE("designide.bpi");
|
|
||||||
USEPACKAGE("dxCoreC11.bpi");
|
|
||||||
USEUNIT("dxCoreReg.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.12.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dcldxCoreC12.bpl
|
|
||||||
OBJFILES = dxCoreReg.obj \
|
|
||||||
dcldxCoreC12.obj
|
|
||||||
MAINSOURCE = dcldxCoreC12.cpp
|
|
||||||
RESFILES = dcldxCoreC12.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi designide.bpi dxCoreC12.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M -LUdclstd -LUdcldb
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpd
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dcldxCoreC12.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEPACKAGE("designide.bpi");
|
|
||||||
USEPACKAGE("dxCoreC12.bpi");
|
|
||||||
USEUNIT("dxCoreReg.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.14.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dcldxCoreC14.bpl
|
|
||||||
OBJFILES = dxCoreReg.obj \
|
|
||||||
dcldxCoreC14.obj
|
|
||||||
MAINSOURCE = dcldxCoreC14.cpp
|
|
||||||
RESFILES = dcldxCoreC14.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi designide.bpi dxCoreC14.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M -LUdclstd -LUdcldb
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpd
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dcldxCoreC14.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEPACKAGE("designide.bpi");
|
|
||||||
USEPACKAGE("dxCoreC14.bpi");
|
|
||||||
USEUNIT("dxCoreReg.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.06.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dcldxCoreC6.bpl
|
|
||||||
OBJFILES = dxCoreReg.obj \
|
|
||||||
dcldxCoreC6.obj
|
|
||||||
MAINSOURCE = dcldxCoreC6.cpp
|
|
||||||
RESFILES = dcldxCoreC6.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi designide.bpi dxCoreC6.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M -LUdclstd -LUdcldb
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpd
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dcldxCoreC6.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEPACKAGE("designide.bpi");
|
|
||||||
USEPACKAGE("dxCoreC6.bpi");
|
|
||||||
USEUNIT("dxCoreReg.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dcldxCoreD10;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$DESIGNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl,
|
|
||||||
designide,
|
|
||||||
dxCoreD10;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCoreReg;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dcldxCoreD11;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$DESIGNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl,
|
|
||||||
designide,
|
|
||||||
dxCoreD11;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCoreReg;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dcldxCoreD12;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$DESIGNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl,
|
|
||||||
designide,
|
|
||||||
dxCoreD12;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCoreReg;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dcldxCoreD14;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$DESIGNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl,
|
|
||||||
designide,
|
|
||||||
dxCoreD14;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCoreReg;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dcldxCoreD6;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$DESIGNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl,
|
|
||||||
designide,
|
|
||||||
dxCoreD6;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCoreReg;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dcldxCoreD7;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$DESIGNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl,
|
|
||||||
designide,
|
|
||||||
dxCoreD7;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCoreReg;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,38 +0,0 @@
|
|||||||
package dcldxCoreD9;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$DESIGNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl,
|
|
||||||
designide,
|
|
||||||
dxCoreD9;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCoreReg;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.10.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxCoreC10.bpl
|
|
||||||
OBJFILES = dxCore.obj \
|
|
||||||
dxCoreC10.obj
|
|
||||||
MAINSOURCE = dxCoreC10.cpp
|
|
||||||
RESFILES = dxCoreC10.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpr
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxCoreC10.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEUNIT("dxCore.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.11.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxCoreC11.bpl
|
|
||||||
OBJFILES = dxCore.obj \
|
|
||||||
dxCoreC11.obj
|
|
||||||
MAINSOURCE = dxCoreC11.cpp
|
|
||||||
RESFILES = dxCoreC11.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpr
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxCoreC11.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEUNIT("dxCore.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.12.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxCoreC12.bpl
|
|
||||||
OBJFILES = dxCore.obj \
|
|
||||||
dxCoreC12.obj
|
|
||||||
MAINSOURCE = dxCoreC12.cpp
|
|
||||||
RESFILES = dxCoreC12.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpr
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxCoreC12.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEUNIT("dxCore.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.14.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxCoreC14.bpl
|
|
||||||
OBJFILES = dxCore.obj \
|
|
||||||
dxCoreC14.obj
|
|
||||||
MAINSOURCE = dxCoreC14.cpp
|
|
||||||
RESFILES = dxCoreC14.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpr
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxCoreC14.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEUNIT("dxCore.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,128 +0,0 @@
|
|||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCB)
|
|
||||||
BCB = $(MAKEDIR)\..
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# IDE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# The following section of the project makefile is managed by the BCB IDE.
|
|
||||||
# It is recommended to use the IDE to change any of the values in this
|
|
||||||
# section.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
VERSION = BCB.06.00
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PROJECT = dxCoreC6.bpl
|
|
||||||
OBJFILES = dxCore.obj \
|
|
||||||
dxCoreC6.obj
|
|
||||||
MAINSOURCE = dxCoreC6.cpp
|
|
||||||
RESFILES = dxCoreC6.res
|
|
||||||
RESDEPEN = $(RESFILES)
|
|
||||||
LIBFILES =
|
|
||||||
LIBRARIES =
|
|
||||||
SPARELIBS =
|
|
||||||
PACKAGES = rtl.bpi vcl.bpi
|
|
||||||
DEFFILE =
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
PATHCPP = .;
|
|
||||||
PATHASM = .;
|
|
||||||
PATHPAS = .;
|
|
||||||
PATHRC = .;
|
|
||||||
USERDEFINES =
|
|
||||||
SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;"$(SEARCHPATH)";$(LIBDIR) -O2 -w- -Vx -Ve -a8 -k- -vi -c -b- -tWM
|
|
||||||
PFLAGS = -DBCB -$Y- -$L- -$D- -$A8 -v -JPHNE -M
|
|
||||||
RFLAGS =
|
|
||||||
AFLAGS =
|
|
||||||
LFLAGS = -D"ExpressCoreLibrary by Developer Express Inc." -aa -Tpp -x -Gn -Gl -Gi -Gpr
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
ALLOBJ = c0pkg32.obj $(PACKAGES) Memmgr.Lib sysinit.obj $(OBJFILES)
|
|
||||||
ALLRES = $(RESFILES)
|
|
||||||
ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# MAKE SECTION
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This section of the project file is not used by the BCB IDE. It is for
|
|
||||||
# the benefit of building from the command-line using the MAKE utility.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.autodepend
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if !$d(BCC32)
|
|
||||||
BCC32 = bcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(CPP32)
|
|
||||||
CPP32 = cpp32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(DCC32)
|
|
||||||
DCC32 = dcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(TASM32)
|
|
||||||
TASM32 = tasm32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(LINKER)
|
|
||||||
LINKER = ilink32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if !$d(BRCC32)
|
|
||||||
BRCC32 = brcc32
|
|
||||||
!endif
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
!if $d(PATHCPP)
|
|
||||||
.PATH.CPP = $(PATHCPP)
|
|
||||||
.PATH.C = $(PATHCPP)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHPAS)
|
|
||||||
.PATH.PAS = $(PATHPAS)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHASM)
|
|
||||||
.PATH.ASM = $(PATHASM)
|
|
||||||
!endif
|
|
||||||
|
|
||||||
!if $d(PATHRC)
|
|
||||||
.PATH.RC = $(PATHRC)
|
|
||||||
!endif
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
|
||||||
$(BCB)\BIN\$(LINKER) @&&!
|
|
||||||
$(LFLAGS) +
|
|
||||||
$(ALLOBJ), +
|
|
||||||
$(PROJECT),, +
|
|
||||||
$(ALLLIB), +
|
|
||||||
$(DEFFILE), +
|
|
||||||
$(ALLRES)
|
|
||||||
!
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
.pas.hpp:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.pas.obj:
|
|
||||||
$(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
$(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
|
|
||||||
|
|
||||||
.c.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.cpp.i:
|
|
||||||
$(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
|
|
||||||
|
|
||||||
.asm.obj:
|
|
||||||
$(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
|
|
||||||
|
|
||||||
.rc.res:
|
|
||||||
$(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
//---------------------------------------------------------------------------
|
|
||||||
#include <vcl.h>
|
|
||||||
#pragma hdrstop
|
|
||||||
USERES("dxCoreC6.res");
|
|
||||||
USEPACKAGE("rtl.bpi");
|
|
||||||
USEPACKAGE("vcl.bpi");
|
|
||||||
USEUNIT("dxCore.pas");
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma package(smart_init)
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
// Package source.
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
#pragma argsused
|
|
||||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
//---------------------------------------------------------------------------
|
|
||||||
Binary file not shown.
@ -1,36 +0,0 @@
|
|||||||
package dxCoreD10;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCore;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,36 +0,0 @@
|
|||||||
package dxCoreD11;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCore;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,36 +0,0 @@
|
|||||||
package dxCoreD12;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCore;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
@ -1,36 +0,0 @@
|
|||||||
package dxCoreD14;
|
|
||||||
|
|
||||||
{$R *.res}
|
|
||||||
{$ALIGN 8}
|
|
||||||
{$ASSERTIONS OFF}
|
|
||||||
{$BOOLEVAL OFF}
|
|
||||||
{$DEBUGINFO OFF}
|
|
||||||
{$EXTENDEDSYNTAX ON}
|
|
||||||
{$IMPORTEDDATA ON}
|
|
||||||
{$IOCHECKS ON}
|
|
||||||
{$LOCALSYMBOLS OFF}
|
|
||||||
{$LONGSTRINGS ON}
|
|
||||||
{$OPENSTRINGS ON}
|
|
||||||
{$OPTIMIZATION ON}
|
|
||||||
{$OVERFLOWCHECKS OFF}
|
|
||||||
{$RANGECHECKS OFF}
|
|
||||||
{$REFERENCEINFO OFF}
|
|
||||||
{$SAFEDIVIDE OFF}
|
|
||||||
{$STACKFRAMES OFF}
|
|
||||||
{$TYPEDADDRESS OFF}
|
|
||||||
{$VARSTRINGCHECKS ON}
|
|
||||||
{$WRITEABLECONST ON}
|
|
||||||
{$MINENUMSIZE 1}
|
|
||||||
{$IMAGEBASE $400000}
|
|
||||||
{$DESCRIPTION 'ExpressCoreLibrary by Developer Express Inc.'}
|
|
||||||
{$RUNONLY}
|
|
||||||
{$IMPLICITBUILD OFF}
|
|
||||||
|
|
||||||
requires
|
|
||||||
rtl,
|
|
||||||
vcl;
|
|
||||||
|
|
||||||
contains
|
|
||||||
dxCore;
|
|
||||||
|
|
||||||
end.
|
|
||||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user