Search found 7 matches

by brindy
Tue Dec 04, 2018 8:08 am
Forum: Development, plugins and third party software
Topic: SDK:error code 3
Replies: 10
Views: 28362

Re: SDK:error code 3

Please try running Everything in debug mode and check for any IPC call errors: In Everything, type in the following search and press ENTER /debug Perform an IPC call. Everything should display some debug information about the call in Cyan color. For example: IPC: query complete: 4294967295 max resu...
by brindy
Wed Nov 28, 2018 5:06 pm
Forum: Development, plugins and third party software
Topic: SDK:error code 3
Replies: 10
Views: 28362

Re: SDK:error code 3

Copy_Data code: EVERYTHING_IPC_LIST2 *list2; ... case WM_COPYDATA: { COPYDATASTRUCT *cds = (COPYDATASTRUCT *)lParam; switch (cds->dwData) { case EVERYTHING_IPC_COPYDATA_QUERY2W: list2 = (EVERYTHING_IPC_LIST2*)cds->lpData; int sum = list2->numitems; if (sum > 40) { sum = 40; } for (i = 0; i<sum; i++)...
by brindy
Wed Nov 28, 2018 5:01 pm
Forum: Development, plugins and third party software
Topic: SDK:error code 3
Replies: 10
Views: 28362

Re: SDK:error code 3

The Everything SDK does not expose the file or folder icon cache in Everything. The return value in filter can be one of EVERYTHING_IPC_FILTER_* types. I had use the ipc query to searching. But the result can't set the sort -- EVERYTHING_IPC_SORT_EXTENSION_ASCENDING. I found the EVERYTHING_IPC_COPY...
by brindy
Wed Nov 28, 2018 3:03 pm
Forum: Development, plugins and third party software
Topic: SDK:error code 3
Replies: 10
Views: 28362

Re: SDK:error code 3

The Everything SDK does not expose the file or folder icon cache in Everything. It is up to the user to gather icons. Please see SHGetFileInfo for more information. I may expose the Everything icon cache in a future Everything IPC release (early Everything 1.4 IPC had support for this and thumbnail...
by brindy
Mon Nov 26, 2018 2:14 pm
Forum: Development, plugins and third party software
Topic: SDK:error code 3
Replies: 10
Views: 28362

Re: SDK:error code 3

Please try setting a view window before executing your query. As you have it now, Everything will be sending every single result via IPC which will take a few seconds. To set a view window, please try: // set the query offset to the current vertical scroll bar position of your result list. Everythi...
by brindy
Wed Nov 21, 2018 3:29 pm
Forum: Development, plugins and third party software
Topic: SDK:error code 3
Replies: 10
Views: 28362

Re: SDK:error code 3

Thank you. I found the error. But now, I have a new question. How to show the request on my window in a real time just like Everything's window. Everything_CleanUp(); Everything_SetSearchW(searchthing.c_str()); Everything_SetRequestFlags(EVERYTHING_REQUEST_FILE_NAME | EVERYTHING_REQUEST_PATH); Every...
by brindy
Fri Nov 16, 2018 12:35 pm
Forum: Development, plugins and third party software
Topic: SDK:error code 3
Replies: 10
Views: 28362

SDK:error code 3

I run the SDK under the Debug x86 and also x64 on the vs 2015 Return Value is 3. I finded the 3 means EVERYTHING_ERROR_REGISTERCLASSEX ----->unable to register window class. int main(int argc,char **argv) { printf("SDK test\n"); Everything_SetSearchW(L"brindy"); Everything_SetReq...