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.

78 lines
1.8 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. // Copyright (c) 2002 Microsoft Corporation. All rights reserved.
  3. // Copyright (c) 2002 OSR Open Systems Resources, Inc.
  4. //
  5. // WppFmt.h : BinPlaceWppFmt and associated paraphenalia
  6. //////////////////////////////////////////////////////////////////////////////
  7. #ifndef __WPPFMT_H__
  8. #define __WPPFMT_H__
  9. #pragma once
  10. // The main Formatting routine, normally used by Binplace and TracePDB
  11. // Takes a PDB and creates guid.tmf files from it, all in TraceFormatFilePath
  12. //
  13. DWORD __stdcall
  14. BinplaceWppFmt(
  15. LPSTR PdbFileName,
  16. LPSTR TraceFormatFilePath,
  17. LPSTR szRSDSDllToLoad,
  18. BOOL TraceVerbose
  19. );
  20. BOOL __cdecl PDBOpen(char *a,
  21. char *b,
  22. ULONG c,
  23. ULONG *pError,
  24. char *e,
  25. VOID **f)
  26. {
  27. // set the error code
  28. *pError = ERROR_NOT_SUPPORTED;
  29. return FALSE;
  30. }
  31. BOOL __cdecl PDBClose(VOID* ppdb)
  32. {
  33. return FALSE;
  34. }
  35. BOOL __cdecl PDBOpenDBI(VOID* ppdb,
  36. const char* szMode,
  37. const char* szTarget,
  38. VOID** ppdbi)
  39. {
  40. return FALSE;
  41. }
  42. BOOL __cdecl DBIClose(VOID* pdbi)
  43. {
  44. return FALSE;
  45. }
  46. BOOL __cdecl ModQuerySymbols(VOID* pmod,
  47. BYTE* pbSym,
  48. long* pcb)
  49. {
  50. return FALSE;
  51. }
  52. BOOL __cdecl DBIQueryNextMod(VOID* pdbi,
  53. VOID* pmod,
  54. VOID** ppmodNext)
  55. {
  56. return FALSE;
  57. }
  58. VOID __cdecl __security_cookie()
  59. {
  60. }
  61. BOOL __fastcall __security_check_cookie(VOID *p)
  62. {
  63. return FALSE;
  64. }
  65. #endif // __WPPFMT_H__