Guest User

Untitled

a guest
Jan 12th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.81 KB | None | 0 0
  1. #ifndef DEVICEIOCONSOLE_H
  2. #define DEVICEIOCONSOLE_H
  3.  
  4. #include "DeviceIOAbstract.h"
  5.  
  6. typedef DeviceIOAbstract DeviceIOConsole;
  7.  
  8. // --------------------------------------------------------------------------------------------------------------------
  9. void DeviceIOConsole_constructor(DeviceIOAbstract* this);
  10.  
  11. // --------------------------------------------------------------------------------------------------------------------
  12. int DeviceIOConsole_readIn(char* buffer);
  13.  
  14. // --------------------------------------------------------------------------------------------------------------------
  15. int DeviceIOConsole_writeOut(char* buffer);
  16.  
  17. // --------------------------------------------------------------------------------------------------------------------
  18. int DeviceIOConsole_writeErr(char* buffer);
  19.  
  20.  
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment