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.

44 lines
1.1 KiB

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (c) 1992-2001 Microsoft Corporation, All Rights Reserved
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10. #ifndef __PROVSTD_H_
  11. #define __PROVSTD_H_
  12. #include <windows.h>
  13. #include <winnls.h>
  14. #include <stdio.h>
  15. #include <provexpt.h>
  16. struct __POSITION { };
  17. typedef __POSITION* POSITION;
  18. #define BEFORE_START_POSITION ((POSITION)-1L)
  19. struct _AFX_DOUBLE { BYTE doubleBits[sizeof(double)]; };
  20. struct _AFX_FLOAT { BYTE floatBits[sizeof(float)]; };
  21. class CObject
  22. {
  23. public:
  24. CObject () {} ;
  25. virtual ~CObject () {} ;
  26. } ;
  27. #define AFXAPI __stdcall
  28. #define AFX_CDECL __cdecl
  29. #pragma warning(disable: 4275) // deriving exported class from non-exported
  30. #pragma warning(disable: 4251) // using non-exported as public in exported
  31. #pragma warning(disable: 4114)
  32. #include "provstr.h"
  33. #endif