Source code of Windows XP (NT5)
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.

35 lines
708 B

  1. // File: avDefs.h
  2. #ifndef _AVDEFS_H_
  3. //To bring in the video stuff...from the NAC interface
  4. #ifndef WSA_IO_PENDING
  5. typedef struct _OVERLAPPED * LPWSAOVERLAPPED;
  6. typedef struct _WSABUF {
  7. u_long len; /* the length of the buffer */
  8. char FAR * buf; /* the pointer to the buffer */
  9. } WSABUF, FAR * LPWSABUF;
  10. typedef
  11. void
  12. (CALLBACK * LPWSAOVERLAPPED_COMPLETION_ROUTINE)(
  13. DWORD dwError,
  14. DWORD cbTransferred,
  15. LPWSAOVERLAPPED lpOverlapped,
  16. DWORD dwFlags
  17. );
  18. #define WSA_IO_PENDING (ERROR_IO_PENDING)
  19. #endif // } WSA_IO_PENDING
  20. #include <mmreg.h>
  21. #include <msacm.h>
  22. #include <vidinout.h>
  23. #include <vcmstrm.h>
  24. #include <iacapapi.h>
  25. #endif /* _AVDEFS_H_ */