Function.h 371 B

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