This commit is contained in:
love-code-yeyixiao 2024-03-16 17:28:46 +08:00
parent 09de4fb412
commit 91350221c5
3 changed files with 7 additions and 6 deletions

View File

@ -151,6 +151,9 @@ P_DeleteEnhMetaFile __sys_DeleteEnhMetaFile = NULL;
P_GetStockObject __sys_GetStockObject = NULL;
P_CreateDCA __sys_CreateDCA=NULL;
P_DeleteDC __sys_DeleteDC = NULL;
P_BitBlt __sys_BitBlt = NULL;
P_StretchBlt __sys_StretchBlt = NULL;
P_TransparentBlt __sys_TransparentBlt = NULL;
//---------------------------------------------------------------------------

View File

@ -434,9 +434,9 @@ _FX BOOLEAN Gui_Init(HMODULE module)
GUI_IMPORT___(GetDCEx);
//GUI_IMPORT___(DeleteDC);
GUI_IMPORT___(ReleaseDC);
GUI_IMPORT___(BitBlt);
GUI_IMPORT___(StretchBlt);
GUI_IMPORT___(TransparentBlt);
//GUI_IMPORT___(BitBlt);
//GUI_IMPORT___(StretchBlt);
//GUI_IMPORT___(TransparentBlt);
// GUI_IMPORT___(CreateDCA);
// GUI_IMPORT___(CreateDCW);
GUI_IMPORT___(GetWindowThreadProcessId);

View File

@ -599,9 +599,7 @@ GUI_SYS_VAR(GetDCEx)
GUI_SYS_VAR(GetWindowDC)
GUI_SYS_VAR(ReleaseDC)
GUI_SYS_VAR(PrintWindow)
GUI_SYS_VAR(BitBlt)
GUI_SYS_VAR(StretchBlt)
GUI_SYS_VAR(TransparentBlt)
GUI_SYS_VAR(ClipCursor)