Sebastian Kuschel reports that pfd_closing can be called for a socket
[u/mdw/putty] / int64.h
diff --git a/int64.h b/int64.h
index 1b23f82..f62f8ef 100644 (file)
--- a/int64.h
+++ b/int64.h
@@ -15,5 +15,10 @@ uint64 uint64_make(unsigned long hi, unsigned long lo);
 uint64 uint64_add(uint64 x, uint64 y);
 uint64 uint64_add32(uint64 x, unsigned long y);
 int uint64_compare(uint64 x, uint64 y);
+uint64 uint64_subtract(uint64 x, uint64 y);
+double uint64_to_double(uint64 x);
+uint64 uint64_shift_right(uint64 x, int shift);
+uint64 uint64_shift_left(uint64 x, int shift);
+uint64 uint64_from_decimal(char *str);
 
 #endif