//==============================================================================
 
//
 
// Title:               prologix.h
 
// Purpose:             A short description of the interface.
 
//
 
// Created on:  29.11.2014 at 20:51:03 by korpar.
 
// Copyright:   . All Rights Reserved.
 
//
 
//==============================================================================
 
 
 
#ifndef __prologix_H__
 
#define __prologix_H__
 
 
 
#ifdef __cplusplus
 
    extern "C" {
 
#endif
 
 
 
//==============================================================================
 
// Include files
 
 
 
#include "cvidef.h"
 
#include <ivi.h>
 
 
 
//==============================================================================
 
// Constants
 
 
 
//==============================================================================
 
// Types
 
 
 
//==============================================================================
 
// External variables
 
 
 
//==============================================================================
 
// Global functions
 
 
 
int _VI_FUNC PROLOGIX_Open (int port);
 
 
 
int _VI_FUNC PROLOGIX_Send (char command[]);
 
 
 
int _VI_FUNC PROLOGIX_Receive (char received[], int lenght);
 
 
 
int _VI_FUNC PROLOGIX_SetAddr (int *primaryAddr, int *secondaryAddr);
 
 
 
void _VI_FUNC PROLOGIX_Close (void);
 
 
 
#ifdef __cplusplus
 
    }
 
#endif
 
 
 
#endif  /* ndef __prologix_H__ */