home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 September / CHIP_CD_1997_09_PL.iso / software / testsoft / labwind / demo.6 / main / include / cvirte.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-02  |  1.8 KB  |  43 lines

  1. /*============================================================================*/
  2. /*                        L a b W i n d o w s / C V I                         */
  3. /*----------------------------------------------------------------------------*/
  4. /*    Copyright (c) National Instruments 1996.   All Rights Reserved.          */
  5. /*----------------------------------------------------------------------------*/
  6. /*                                                                                                      */
  7. /* Title:       cvirte.h                                                                           */
  8. /* Purpose:     Include file for CVI Run-Time Engine DLL.                           */
  9. /*                                                                            */
  10. /*============================================================================*/
  11.  
  12. #ifndef _CVIRTE_H
  13. #define _CVIRTE_H
  14.  
  15. #include "cvidef.h"
  16.  
  17. #ifdef __cplusplus
  18.     extern "C" {
  19. #endif
  20.  
  21.  
  22. /*****************************************************************/
  23. /* Pass zero for the hInstance parameter if you are calling this */
  24. /* function from an executable, or the DLL instance if you are   */
  25. /* calling it from a DLL.  You may pass zero for the argv        */
  26. /* parameter if you are not using main(), or you are using       */
  27. /* main with no parameters.  Pass zero for the reserved          */
  28. /* parameter.                                                    */
  29. /*****************************************************************/
  30. int     CVIFUNC     InitCVIRTEEx (void *hInstance, char *argv[],
  31.                                   void *reserved);
  32.  
  33. #define InitCVIRTE     InitCVIRTEEx
  34.  
  35.  
  36. void    CVIFUNC     CloseCVIRTE (void);
  37.  
  38. #ifdef __cplusplus
  39.     }
  40. #endif
  41.  
  42. #endif  /* ndef _CVIRTE_H */
  43.