Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Эти библиотеки уже подключены в файле <dllBridge.h>
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- #include <stdio.h>
- #include <string.h>
- #include <locale.h> Кириллица уже подключена.
- #include <windows.h>
- */
- #include <dllBridge.h>
- // Демонстрация подключения для языка Си
- ///////////////////////////////////////////////////////////////////////////////
- int main() //
- {
- int res = dllBridge("C:\\dllBridge"); // Путь, где лежит dllBridge.dll
- if( res < 1) printf("%s \n", szWLError); // Печатается причина ошибки подключения.
- else printf("Successfully connected to \"dllBridge.dll\"\n");
- printf("Номер Вашей программы, по умолчанию = %d\n", ProgramNumber);
- for(int i = 4; i < 25; i += 2) // Подождём 20 секунд и отключимся.
- {
- Sleep(1000);
- Transit[3][i] = 1000 + i ; // Содержимое этого массива просматривайте, через программу "UniMons.exe"
- printf("%d\n", 1000 + i);
- }
- __DisConnect(ProgramNumber); printf("\t Отключились от \"dllBridge.dll\"");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement