Windows NT 4.0 source code leak
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.

25 lines
648 B

4 years ago
  1. //--------------------------------------------------------------------------;
  2. //
  3. // File: dxvalid.h
  4. //
  5. // Copyright (c) 1996 Microsoft Corporation. All Rights Reserved.
  6. //
  7. // Abstract:
  8. // This header contains common parameter validate macros for DirectX.
  9. //
  10. // History:
  11. // 02/14/96 angusm Initial version
  12. //
  13. //--------------------------------------------------------------------------;
  14. // _________________________________________________________________________
  15. // VALIDEX_xxx
  16. // macros are the same for debug and retail
  17. #define VALIDEX_DIRECTSOUNDCF_PTR( ptr ) \
  18. (!IsBadWritePtr( ptr, sizeof( CClassFactory* )))