From c108e5ba42168841311b74034d89c31556d628c4 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 12 七月 2022 17:24:10 +0800
Subject: [PATCH] '完善'

---
 ConsoleApplication/CaptureUtil.h |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/ConsoleApplication/CaptureUtil.h b/ConsoleApplication/CaptureUtil.h
index 5fb92e6..3e6c74d 100644
--- a/ConsoleApplication/CaptureUtil.h
+++ b/ConsoleApplication/CaptureUtil.h
@@ -12,12 +12,17 @@
 	HWND frame;
 	RECT position;
 
+	bool operator < (FrameInfo& b) {
+		return position.left < b.position.left;
+	}
+
 };
 class CaptureUtil
 {
 private:
 	static std::list<FrameInfo> tempFrames;
 	static HWND level2Frames[8];
+	static HWND tradeQueueFrames[8];
 	static BOOL CALLBACK EnumChildProc(HWND hwndChild, LPARAM lParam);
 	static HWND getHWND(int index);
 

--
Gitblit v1.8.0