Files
ollama/app/updater/updater_darwin.h
Daniel Hiltgen d3b4b9970a app: add code for macOS and Windows apps under 'app' (#12933)
* app: add code for macOS and Windows apps under 'app'

* app: add readme

* app: windows and linux only for now

* ci: fix ui CI validation

---------

Co-authored-by: jmorganca <jmorganca@gmail.com>
2025-11-04 11:40:17 -08:00

16 lines
498 B
Objective-C

#import <Cocoa/Cocoa.h>
// TODO make these macros so we can extract line numbers from the native code
void appLogInfo(NSString *msg);
void appLogDebug(NSString *msg);
void goLogInfo(const char *msg);
void goLogDebug(const char *msg);
AuthorizationRef getAuthorization(NSString *authorizationPrompt,
NSString *right);
AuthorizationRef getAppInstallAuthorization();
const char* verifyExtractedBundle(char *path);
bool chownWithAuthorization(const char *user);