17 lines
363 B
Mathematica
17 lines
363 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// SDWebImageWebPCoderExample-macOS
|
||
|
//
|
||
|
// Created by lizhuoli on 2023/11/8.
|
||
|
// Copyright © 2023 SDWebImage. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, const char * argv[]) {
|
||
|
@autoreleasepool {
|
||
|
// Setup code that might create autoreleased objects goes here.
|
||
|
}
|
||
|
return NSApplicationMain(argc, argv);
|
||
|
}
|