[IDE tool] Include Helper

Working on new editor enhancements?
AZJIO
Addict
Addict
Posts: 2154
Joined: Sun May 14, 2017 1:48 am

[IDE tool] Include Helper

Post by AZJIO »

Include Helper
Download: yandex upload.ee

Include_Helper.exe "%TEMPFILE"

Insert a function call into the code and run the tool. It will copy the missing IsLatin function to the clipboard.

Code: Select all

Debug IsLatin(@"123")
You can add your own functions to the general.pb file.

Include_Helper ignores native PureBasic functions, as well as arrays, lists, and maps. It also ignores the functions in the source code. That is, it will offer only the missing ones.
Last edited by AZJIO on Fri Apr 19, 2024 2:01 am, edited 1 time in total.
AZJIO
Addict
Addict
Posts: 2154
Joined: Sun May 14, 2017 1:48 am

Re: [IDE tool] Include Helper

Post by AZJIO »

Updated
Now it scans the XIncludeFile (not recursively).
A list of general.ini functions is used for quick search. If the file size changes, the list is created anew.
Preview the results before copying.
Returns a list of functions that were not found.

The code for the test. Open the tool and it will show you what needs to be done for this code.

Code: Select all

SplitM()
IsLatin()
IsLatin1()
ModPow()
GetMTPManufacturer()
ListSubKey()
SetTabBarGadgetItemImage()
Image
AZJIO
Addict
Addict
Posts: 2154
Joined: Sun May 14, 2017 1:48 am

Re: [IDE tool] Include Helper

Post by AZJIO »

Added Linux support
screenshot
Updated: apostrophe added
Post Reply