Function.h 466 B

12345678910111213141516
  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, HWND hChild, LPCWCHAR childTitle, int x, int y, WNDPROC procFunc, LPCWCHAR className, HINSTANCE hInstance);
  11. LRESULT CALLBACK WeatherProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);