Source code of Windows XP (NT5)
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.

14 lines
340 B

  1. #include <fstream.h>
  2. #define WIN32_LEAN_AND_MEAN
  3. #include <windows.h>
  4. #undef WIN32_LEAN_AND_MEAN
  5. void read_float(istream& is, float& v);
  6. void read_DWORD(istream& is, DWORD& v);
  7. void read_WORD(istream& is, WORD& v);
  8. void skip_bytes(istream&is, DWORD i);
  9. #ifndef __DUMP_DATA
  10. void write_string(ostream& os, char *str);
  11. #endif //__DUMP_DATA