home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 275 / DPCS0111DVD.ISO / Toolkit / Audio-Visual / VirtualDub / Source / VirtualDub-1.9.10-src.7z / src / Ami / h / utils.h < prev   
Encoding:
C/C++ Source or Header  |  2009-09-14  |  389 b   |  14 lines

  1. #ifndef f_VD2_AMI_UTILS_H
  2. #define f_VD2_AMI_UTILS_H
  3.  
  4. #include <string>
  5.  
  6. std::string ANSIify(const std::wstring& unicode);
  7. void warning(const char *format, ...);
  8. void __declspec(noreturn) fatal(const char *format, ...);
  9. void __declspec(noreturn) fatal_internal(const char *fname, const int line);
  10.  
  11. std::basic_string<unsigned char> ConvertToSCSU(const std::wstring& s);
  12.  
  13. #endif
  14.