17 lines
297 B
C
17 lines
297 B
C
//
|
|
// QRCodeUtils.h
|
|
// ShadowsocksX-NG
|
|
//
|
|
// Created by 邱宇舟 on 16/6/8.
|
|
// Copyright © 2016年 qiuyuzhou. All rights reserved.
|
|
//
|
|
|
|
#ifndef QRCodeUtils_h
|
|
#define QRCodeUtils_h
|
|
|
|
void ScanQRCodeOnScreen();
|
|
|
|
NSImage* createQRImage(NSString *string, NSSize size);
|
|
|
|
#endif /* QRCodeUtils_h */
|