Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "C:\\dllBridge\\dllBridge.h"
- // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
- // The dllBridge-folder should be here: "C:\dllBridge". !
- // !
- // Already connected in the "dllBridge.h" file !
- // - - - - - - - - - - - - - - - - - - - - - - - - !
- // #include <stdio.h> !
- // #include <string.h> !
- // #include <locale.h> !
- // #include <windows.h> !
- // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
- // Демонстрация подключения для языка Си
- ///////////////////////////////////////////////////////////////////////////////
- int main() //
- {
- if(dllBridge_init(7564) > 0)
- {
- for(int i = 4; i < 25; i += 2) // Подождём 25 секунд и отключимся.
- {
- 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