cmake-bare
Advanced tools
+1
-1
| { | ||
| "name": "cmake-bare", | ||
| "version": "1.6.3", | ||
| "version": "1.6.4", | ||
| "description": "Bare utilities for CMake", | ||
@@ -5,0 +5,0 @@ "files": [ |
@@ -20,3 +20,3 @@ // Delay loader implementation for Windows. This is used to support loading | ||
| static inline HMODULE | ||
| bare__module_main (void) { | ||
| bare__module_main(void) { | ||
| static HMODULE main = NULL; | ||
@@ -30,3 +30,3 @@ | ||
| static inline HMODULE | ||
| bare__module_find (const char *name) { | ||
| bare__module_find(const char *name) { | ||
| static bare__module_find_fn find = NULL; | ||
@@ -48,3 +48,3 @@ | ||
| static inline int | ||
| bare__string_equals (LPCSTR a, LPCSTR b) { | ||
| bare__string_equals(LPCSTR a, LPCSTR b) { | ||
| return _stricmp(a, b) == 0; | ||
@@ -54,3 +54,3 @@ } | ||
| static inline int | ||
| bare__string_ends_with (LPCSTR a, LPCSTR b) { | ||
| bare__string_ends_with(LPCSTR a, LPCSTR b) { | ||
| size_t a_len = strlen(a); | ||
@@ -65,3 +65,3 @@ size_t b_len = strlen(b); | ||
| static FARPROC WINAPI | ||
| bare__delay_load (unsigned event, PDelayLoadInfo info) { | ||
| bare__delay_load(unsigned event, PDelayLoadInfo info) { | ||
| switch (event) { | ||
@@ -86,4 +86,4 @@ case dliNotePreLoadLibrary: | ||
| const PfnDliHook __pfnDliNotifyHook2 = bare__delay_load; | ||
| PfnDliHook __pfnDliNotifyHook2 = bare__delay_load; | ||
| const PfnDliHook __pfnDliFailureHook2 = bare__delay_load; | ||
| PfnDliHook __pfnDliFailureHook2 = bare__delay_load; |
30294
-0.06%