blob: af4dbd9ace71587ba33a44db6d1ccec7f8dff766 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Copyright (C) 2018 Iru Cai <mytbk920423@gmail.com>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#include <windows.h>
extern int cb_top;
typedef LRESULT (CALLBACK *wProc)(HWND, UINT, WPARAM, LPARAM);
extern wProc windowCallbacks[100]; // 48a010
int register_wait_callback(wProc a1, int a2);
void Post_0402_Message(LPARAM lp);
|