Skip to content

Commit d51a496

Browse files
Fix incorrect dll import name (#4371)
1 parent 2bd6e9a commit d51a496

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Plugins/Flow.Launcher.Plugin.Explorer/Search/Everything/EverythingApiDllImport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public static void Load(string directory)
126126
public static extern uint Everything_GetRequestFlags();
127127
[DllImport(DLL)]
128128
public static extern uint Everything_GetResultListRequestFlags();
129-
[DllImport("Everything64.dll", CharSet = CharSet.Unicode)]
129+
[DllImport(DLL, CharSet = CharSet.Unicode)]
130130
public static extern IntPtr Everything_GetResultExtension(uint nIndex);
131131
[DllImport(DLL)]
132132
public static extern bool Everything_GetResultSize(uint nIndex, out long lpFileSize);

0 commit comments

Comments
 (0)