Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
534 B

  1. /* File: foo.h (Created: 01-Nov-1991)
  2. *
  3. * Copyright 1990 by Hilgraeve Inc. -- Monroe, MI
  4. * All rights reserved
  5. *
  6. * $Revision: 2 $
  7. * $Date: 4/05/02 4:34p $
  8. */
  9. #define FB_SIZE 2048
  10. struct stFooBuffer
  11. {
  12. unsigned int usSend;
  13. unsigned char acSend[FB_SIZE];
  14. };
  15. typedef struct stFooBuffer stFB;
  16. extern int fooComSendChar(HCOM h, stFB *pB, BYTE c);
  17. extern int fooComSendClear(HCOM h, stFB *pB);
  18. extern int fooComSendPush(HCOM h, stFB *pB);
  19. extern int fooComSendCharNow(HCOM h, stFB *pB, BYTE c);