更新代码
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
|
||||
/**
|
||||
* GIF录屏控件 作者:feiyangqingyun(QQ:517216493) 2019-4-3
|
||||
* 1. 可设置要录制屏幕的宽高,支持右下角直接拉动改变.
|
||||
* 2. 可设置变宽的宽度
|
||||
* 3. 可设置录屏控件的背景颜色
|
||||
* 4. 可设置录制的帧数
|
||||
* 5. 录制区域可自由拖动选择
|
||||
* 1. 可设置要录制屏幕的宽高,支持右下角直接拉动改变。
|
||||
* 2. 可设置变宽的宽度。
|
||||
* 3. 可设置录屏控件的背景颜色。
|
||||
* 4. 可设置录制的帧数。
|
||||
* 5. 录制区域可自由拖动选择。
|
||||
*/
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
Reference in New Issue
Block a user