Function.h 391 B

123456789101112131415
  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. void StartBDS();
  8. void StopBDS();
  9. void ForceStopBDS();
  10. bool SendCommand(LPCSTR command);
  11. HWND CreateChildWindow(HWND hFather, LPCWCHAR childTitle, int x, int y, WNDPROC procFunc, LPCWCHAR className, HINSTANCE hInstance);