mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-23 03:05:37 +00:00
3b49292897
Also don't expose os functions. And do the dllexport/dllimport thing.
17 lines
429 B
C
17 lines
429 B
C
/*
|
|
* Copyright (c) 2015 Andrew Kelley
|
|
*
|
|
* This file is part of libsoundio, which is MIT licensed.
|
|
* See http://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#ifndef SOUNDIO_SOUNDIO_PRIVATE_H
|
|
#define SOUNDIO_SOUNDIO_PRIVATE_H
|
|
|
|
// This exists for __declspec(dllexport) and __declspec(dllimport) to be
|
|
// defined correctly without the library user having to do anything.
|
|
#define SOUNDIO_BUILDING_LIBRARY
|
|
#include "soundio/soundio.h"
|
|
|
|
#endif
|