acestext.h 781 B

12345678910111213141516171819202122232425
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2015 Autodesk, Inc. All rights reserved.
  4. //
  5. // Use of this software is subject to the terms of the Autodesk license
  6. // agreement provided at the time of installation or download, or which
  7. // otherwise accompanies this software in either electronic or hard copy form.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. //
  11. //
  12. // acestext.h: Define an exported function that exchanges
  13. // an Acad::ErrorStatus enum value for a string
  14. // describing the error message.
  15. #ifndef _AD_ACESTEXT_H
  16. #define _AD_ACESTEXT_H 1
  17. #include "acdb.h"
  18. #include "AdAChar.h"
  19. const ACHAR * acadErrorStatusText(Acad::ErrorStatus);
  20. #endif