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.

35 lines
834 B

  1. /********************************************************************
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. symres.h
  5. Abstract:
  6. Header file for symres.dll
  7. Revision History:
  8. Brijesh Krishnaswami (brijeshk) - 04/15/99 - Created
  9. ********************************************************************/
  10. #ifndef _SYMRES_H
  11. #define _SYMRES_H
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif // __cplusplus
  15. void APIENTRY ResolveSymbols(LPWSTR, // [in] filename
  16. LPWSTR, // [in] version
  17. DWORD, // [in] section
  18. UINT_PTR, // [in] offset
  19. LPWSTR // [out] resolved function name
  20. );
  21. #ifdef __cplusplus
  22. }
  23. #endif // __cplusplus
  24. #endif