Updated Sparkle

This commit is contained in:
Hendrik Holtmann
2016-03-21 14:34:34 +01:00
parent 3e00b8e79a
commit 2804ac0c85
173 changed files with 663 additions and 828 deletions

View File

@ -0,0 +1,18 @@
//
// SUExport.h
// Sparkle
//
// Created by Jake Petroules on 2014-08-23.
// Copyright (c) 2014 Sparkle Project. All rights reserved.
//
#ifndef SUEXPORT_H
#define SUEXPORT_H
#ifdef BUILDING_SPARKLE
#define SU_EXPORT __attribute__((visibility("default")))
#else
#define SU_EXPORT
#endif
#endif