From 30d5ce7ffb8f5bf0c7158449dac32fd023e86f16 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Tue, 6 Jul 2004 18:45:02 +0000 Subject: [PATCH] Define MSVCRT_div_t and MSVCRT_ldiv_t. --- dlls/msvcrt/msvcrt.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dlls/msvcrt/msvcrt.h b/dlls/msvcrt/msvcrt.h index 97ae662d469..a3fcd74c18f 100644 --- a/dlls/msvcrt/msvcrt.h +++ b/dlls/msvcrt/msvcrt.h @@ -226,6 +226,16 @@ struct MSVCRT__complex { double y; /* Imaginary part */ }; +typedef struct MSVCRT__div_t { + int quot; /* quotient */ + int rem; /* remainder */ +} MSVCRT_div_t; + +typedef struct MSVCRT__ldiv_t { + long quot; /* quotient */ + long rem; /* remainder */ +} MSVCRT_ldiv_t; + struct MSVCRT__heapinfo { int* _pentry; MSVCRT_size_t _size;