Submit
Path:
~
/
/
usr
/
include
/
sass
/
File Content:
base.h
#ifndef SASS_BASE_H #define SASS_BASE_H // #define DEBUG // #define DEBUG_SHARED_PTR #ifdef _MSC_VER #pragma warning(disable : 4503) #ifndef _SCL_SECURE_NO_WARNINGS #define _SCL_SECURE_NO_WARNINGS #endif #ifndef _CRT_SECURE_NO_WARNINGS #define _CRT_SECURE_NO_WARNINGS #endif #ifndef _CRT_NONSTDC_NO_DEPRECATE #define _CRT_NONSTDC_NO_DEPRECATE #endif #endif // Work around lack of `noexcept` keyword support in VS2013 #if defined(_MSC_VER) && (_MSC_VER <= 1800) && !defined(_ALLOW_KEYWORD_MACROS) #define _ALLOW_KEYWORD_MACROS 1 #define noexcept throw( ) #endif #include <stddef.h> #include <stdbool.h> #ifdef __GNUC__ #define DEPRECATED(func) func __attribute__ ((deprecated)) #elif defined(_MSC_VER) #define DEPRECATED(func) __declspec(deprecated) func #else #pragma message("WARNING: You need to implement DEPRECATED for this compiler") #define DEPRECATED(func) func #endif #ifdef _WIN32 /* You should define ADD_EXPORTS *only* when building the DLL. */ #ifdef ADD_EXPORTS #define ADDAPI __declspec(dllexport) #define ADDCALL __cdecl #else #define ADDAPI #define ADDCALL #endif #else /* _WIN32 not defined. */ /* Define with no value on non-Windows OSes. */ #define ADDAPI #define ADDCALL #endif /* Make sure functions are exported with C linkage under C++ compilers. */ #ifdef __cplusplus extern "C" { #endif // Different render styles enum Sass_Output_Style { SASS_STYLE_NESTED, SASS_STYLE_EXPANDED, SASS_STYLE_COMPACT, SASS_STYLE_COMPRESSED, // only used internaly SASS_STYLE_INSPECT, SASS_STYLE_TO_SASS, SASS_STYLE_TO_CSS }; // to allocate buffer to be filled ADDAPI void* ADDCALL sass_alloc_memory(size_t size); // to allocate a buffer from existing string ADDAPI char* ADDCALL sass_copy_c_string(const char* str); // to free overtaken memory when done ADDAPI void ADDCALL sass_free_memory(void* ptr); // Some convenient string helper function ADDAPI char* ADDCALL sass_string_quote (const char* str, const char quote_mark); ADDAPI char* ADDCALL sass_string_unquote (const char* str); // Implemented sass language version // Hardcoded version 3.4 for time being ADDAPI const char* ADDCALL libsass_version(void); // Get compiled libsass language ADDAPI const char* ADDCALL libsass_language_version(void); #ifdef __cplusplus } // __cplusplus defined. #endif #endif
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
base.h
2369 bytes
0644
context.h
10742 bytes
0644
functions.h
6632 bytes
0644
values.h
6489 bytes
0644
version.h
198 bytes
0644
N4ST4R_ID | Naxtarrr