temamironovonline 1 year ago
parent
commit
30201c12d1
1 changed files with 16 additions and 1 deletions
  1. 16 1
      testExam/98408f4f1946c522.docx

+ 16 - 1
testExam/98408f4f1946c522.docx

@@ -1407,7 +1407,22 @@ void writeToFileIvanova(struct users* currentPeople, int countCurrentPeople)
     free(dataForWritting);
     CloseHandle(fileResult);
 }
-
+HeaderDLL.h
+#pragma [HYPERLINK: https://vk.com/im?sel=178775378&st=%23pragma] once
+__declspec(dllimport) int myFunc(LPWSTR str);
+__declspec(dllimport) void readData(struct users* people);
+__declspec(dllimport) void searchSurname(struct users* people);
+__declspec(dllimport) void writeToFile(struct users* currentPeople, int countCurrentPeople);
+__declspec(dllimport) void writeToFileIvanova(struct users* currentPeople, int countCurrentPeople);
+__declspec(dllimport) void searchSurnameIvanova(struct users* people);
+
+struct users
+{
+char* surname;
+char* name;
+char* midname;
+int age;
+};