home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 June / Image.iso / xtension / akku / dllakku.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-28  |  545 b   |  21 lines

  1. // This interface can be included by C or C++ code
  2.  
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif  /* __cplusplus */
  6.  
  7.  
  8. __declspec( dllexport ) BOOL InitAD(int);
  9. __declspec( dllexport ) BOOL EndAD();
  10. __declspec( dllexport ) BOOL SetChannel(int);
  11. __declspec( dllexport ) BOOL GetAnalog(int*);
  12. __declspec( dllexport ) BOOL StopAD();
  13. __declspec( dllexport ) BOOL Pause(int);
  14. __declspec( dllexport ) AkkuLoad(int);
  15. __declspec( dllexport ) AkkuUnload(int);
  16. __declspec( dllexport ) AkkuStatus(int*,int*,int*);
  17.  
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21.