1 /* 2 * ntintsafe.h 3 * 4 * Windows NT helper functions for integer overflow prevention 5 * 6 * This file is part of the ReactOS DDK package. 7 * 8 * Contributors: 9 * Timo Kreuzer (timo.kreuzer@reactos.org) 10 * 11 * THIS SOFTWARE IS NOT COPYRIGHTED 12 * 13 * This source code is offered for use in the public domain. You may 14 * use, modify or distribute it freely. 15 * 16 * This code is distributed in the hope that it will be useful but 17 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY 18 * DISCLAIMED. This includes but is not limited to warranties of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 20 * 21 */ 22 #pragma once 23 24 #ifndef _NTINTSAFE_H_INCLUDED_ 25 #define _NTINTSAFE_H_INCLUDED_ 26 27 /* Include the sdk version */ 28 #include <intsafe.h> 29 30 /* We don't want this one */ 31 #undef _INTSAFE_H_INCLUDED_ 32 33 #endif // !_NTINTSAFE_H_INCLUDED_ 34