16 lines
432 B
Mathematica
16 lines
432 B
Mathematica
|
#if defined(OS_MACOS)
|
||
|
|
||
|
#include <CoreFoundation/CFBundle.h>
|
||
|
#include <ApplicationServices/ApplicationServices.h>
|
||
|
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void openWebpageMacos(const char *url) {
|
||
|
CFURLRef urlRef = CFURLCreateWithBytes(NULL, (uint8_t*)(url), strlen(url), kCFStringEncodingASCII, NULL);
|
||
|
LSOpenCFURLRef(urlRef, NULL);
|
||
|
CFRelease(urlRef);
|
||
|
}
|
||
|
|
||
|
#endif
|