Курсовая работа: Системное программирование для операционных систем
public: // User declarations
__fastcall TSDForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TSDForm *SDForm;
//---------------------------------------------------------------------------
#endif
Файл FSelectDirForm.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "FSelectDirForm.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TSDForm *SDForm;
//---------------------------------------------------------------------------
__fastcall TSDForm::TSDForm(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
Файл FMain.h
//---------------------------------------------------------------------------
#ifndef FMainH
#define FMainH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>