PatientRecord
This structure is used by EnrollPatient to enroll a patient in a study.
Syntax
typedef struct patient_record
{
char birth_date[DATE_SIZE +1];
char sex[2];
char first_name[16];
char last_name[21];
char initials[5];
char enrollment_date[DATE_SIZE+1];
} PatientRecord;Parameters
birth_date (in)
sex (in)
first_name (in)
last_name (in)
initials (in)
enrollment_date (in)
Used in Function
Parent topic: DCAPI Structure Type Definitions