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.

18 lines
634 B

  1. #ifndef _LRPCMON_H
  2. #define _LRPCMON_H
  3. // Creates a window and registers it with LRPC. Also saves the address, size
  4. // of the given static buffer; address of Notification routine.
  5. //
  6. // For every LRPC message processed LRPC posts an identical message to this
  7. // window. The message is processed: it content is formatted into the buffer.
  8. // It then calls the notification routine.
  9. //
  10. STDAPI_(BOOL) StartMonitor(HINSTANCE hInst, FARPROC pNotify,
  11. LPSTR pBuf, DWORD dwBufSize);
  12. STDAPI_(void) StopMonitor(void);
  13. #define MINBUFSIZE 32 /* Minimum buffer size passed to StartMonitor */
  14. #endif