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.

41 lines
628 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. routing\ip\rtrmgr\asyncwrk.h
  5. Abstract:
  6. All functions called spooled to a worker function
  7. Revision History:
  8. Gurdeep Singh Pall 6/15/95 Created
  9. --*/
  10. typedef struct _RESTORE_INFO_CONTEXT
  11. {
  12. DWORD dwIfIndex;
  13. }RESTORE_INFO_CONTEXT, *PRESTORE_INFO_CONTEXT;
  14. VOID
  15. RestoreStaticRoutes(
  16. PVOID pvContext
  17. );
  18. VOID
  19. ResolveHbeatName(
  20. PVOID pvContext
  21. );
  22. DWORD
  23. QueueAsyncFunction(
  24. WORKERFUNCTION pfnFunction,
  25. PVOID pvContext,
  26. BOOL bAlertable
  27. );