Курсовая работа: Системное программирование для операционных систем
//динамические массивы (с элементами int и HANDLE)
typedef TArray<int> TIntArray;
typedef TArray<HANDLE> THandleArray;
#endif
Файл ArrayTemplate.cpp
//---------------------------------------------------------------------------
#pragma hdrstop
#include <System.hpp>
#include "ArrayTemplate.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
Файл FSelectDirForm.h
//---------------------------------------------------------------------------
#ifndef FSelectDirFormH
#define FSelectDirFormH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <FileCtrl.hpp>
//---------------------------------------------------------------------------
class TSDForm : public TForm
{
__published: // IDE-managed Components
TButton *Button1;
TButton *Button2;
TDirectoryListBox *DirectoryListBox1;
TDriveComboBox *DriveComboBox1;