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.

48 lines
848 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1992 - 1999
  3. Module Name:
  4. uuidfmt.h {v1.00}
  5. Abstract:
  6. This module is used by uuidfmt.c and any other module which
  7. uses uuidfmt.c.
  8. It prototypes the entry into uuidfmt.c, I_UuidStringGenerate,
  9. and contains the set of flag codes used by I_UuidStringGenerate.
  10. Author:
  11. Joev Dubach (t-joevd) 6/11/92
  12. Revision History:
  13. --*/
  14. #ifndef __UUIDGEN_H__
  15. #define __UUIDGEN_H__
  16. //
  17. // Defines (flags for I_UuidStringGenerate)
  18. //
  19. #define UUIDGEN_FORMAT_IDL 0
  20. #define UUIDGEN_FORMAT_CSTRUCT 1
  21. #define UUIDGEN_FORMAT_PLAIN 2
  22. //
  23. // Function prototypes
  24. //
  25. RPC_STATUS I_UuidStringGenerate(
  26. int Flag,
  27. int Sequential,
  28. int AllCaps,
  29. char PAPI * UuidFormattedString,
  30. char PAPI * InterfaceName
  31. );
  32. #endif /* __UUIDGEN_H__ */