更新代码

This commit is contained in:
feiyangqingyun
2021-09-13 16:13:49 +08:00
parent 08d29fb44c
commit 60486feb03
32 changed files with 259 additions and 387 deletions

View File

@@ -27,7 +27,19 @@
#include <stdio.h> // for FILE*
#include <string.h> // for memcpy and bzero
#ifdef _MSC_VER
typedef signed __int8 int8_t;
typedef unsigned __int8 uint8_t;
typedef signed __int16 int16_t;
typedef unsigned __int16 uint16_t;
typedef signed __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef signed __int64 int64_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h> // for integer typedefs
#endif
// Define these macros to hook into a custom memory allocator.
// TEMP_MALLOC and TEMP_FREE will only be called in stack fashion - frees in the reverse order of mallocs

View File

@@ -3,11 +3,11 @@
/**
* GIF录屏控件 作者:feiyangqingyun(QQ:517216493) 2019-4-3
* 1. 可设置要录制屏幕的宽高,支持右下角直接拉动改变.
* 2. 可设置变宽的宽度
* 3. 可设置录屏控件的背景颜色
* 4. 可设置录制的帧数
* 5. 录制区域可自由拖动选择
* 1. 可设置要录制屏幕的宽高支持右下角直接拉动改变
* 2. 可设置变宽的宽度
* 3. 可设置录屏控件的背景颜色
* 4. 可设置录制的帧数
* 5. 录制区域可自由拖动选择
*/
#include <QDialog>