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.

22 lines
812 B

  1. typedef struct _bufferinfo
  2. {
  3. DWORD dwTotalSize;
  4. DWORD dwUsedSize;
  5. LPBYTE pBuffer;
  6. LPBYTE pDataIn;
  7. LPBYTE pDataOut;
  8. } BUFFERINFO, *PBUFFERINFO;
  9. BOOL PeekAsyncEventMsgFromQueue(
  10. PBUFFERINFO pBufferInfo,
  11. PBYTE * ppCurrent,
  12. PASYNCEVENTMSG * ppMsg,
  13. DWORD * pdwMsgSize
  14. );
  15. void RemoveAsyncEventMsgFromQueue(
  16. PBUFFERINFO pBufferInfo,
  17. PASYNCEVENTMSG pMsg,
  18. PBYTE * ppCurrent
  19. );