00001
00025 #ifndef __openalpp_export_h__
00026
00027 #define __openalpp_export_h__
00028
00029
00030
00031 #ifdef _WIN32
00032
00033
00034
00035 #pragma once
00036
00037 #include <windows.h>
00038
00039
00040
00041 #ifdef OPENALPP_EXPORTS
00042
00043 #define OPENALPP_API __declspec(dllexport)
00044
00045 #else
00046
00047 #define OPENALPP_API __declspec(dllimport)
00048
00049 #endif
00050
00051 #else
00052
00053 #define OPENALPP_API
00054
00055 #endif
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079 #endif
00080
00081
00082