Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

cmake-bare

Package Overview
Dependencies
Maintainers
2
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cmake-bare - npm Package Compare versions

Comparing version
1.6.3
to
1.6.4
+1
-1
package.json
{
"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;