Function.h 640 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "Win32.h"
  3. int Err(HWND hwnd, LPCTSTR message);
  4. int Err(ATOM atom, LPCTSTR message);
  5. int Err(LPCTSTR message);
  6. void ForceErrCheck(LPCTSTR title);
  7. int Err(std::ifstream* file, LPCTSTR message);
  8. int Err(std::fstream* file, LPCTSTR message);
  9. void StartBDS();
  10. void StopBDS();
  11. void ForceStopBDS();
  12. bool SendCommand(LPCSTR command);
  13. void ClearLog();
  14. void Log(HWND hwnd);
  15. HWND CreateChildWindow(HWND hFather, LPCWCHAR childTitle, int x, int y, WNDPROC procFunc, LPCWCHAR className, HINSTANCE hInstance);
  16. HWND CreateNewWindow(LPCWCHAR childTitle, int x, int y, WNDPROC procFunc, LPCWCHAR className, HINSTANCE hInstanceF);