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.

28 lines
504 B

  1. /*
  2. * server.h - Server vtable functions module description.
  3. */
  4. /* Types
  5. ********/
  6. #include <msshrui.h>
  7. typedef struct _servervtable
  8. {
  9. PFNGETNETRESOURCEFROMLOCALPATH GetNetResourceFromLocalPath;
  10. PFNGETLOCALPATHFROMNETRESOURCE GetLocalPathFromNetResource;
  11. }
  12. SERVERVTABLE;
  13. DECLARE_STANDARD_TYPES(SERVERVTABLE);
  14. /* Prototypes
  15. *************/
  16. /* server.c */
  17. extern BOOL ProcessInitServerModule(void);
  18. extern void ProcessExitServerModule(void);
  19. extern BOOL GetServerVTable(PCSERVERVTABLE *);