Distorted Pixel wrote: Sat Sep 04, 2021 4:28 pmIf I write a program in PB to do the data manipulation for the game and put it in dll form is that considered wrapping commands?
No, it's not. Wrapping has been answered here ->
viewtopic.php?p=369010#p369010
Kukulkan wrote: Fri Dec 09, 2011 2:18 pmYou can do a DLL that does some job but you are not allowed to do a DLL that offers functionality like myBase64Decoder(), mySHA1Fingerprint(), myCreateImage() or myResizeImage() etc.
You can if you write your own code to do it, such as your own MyResizeImage() that doesn't use ResizeImage(), or uses it PLUS some other things when resizing. For example, if your resize command does a resize but also then centers the resized image in a pre-defined box. This is then not a wrapper for the command, but a whole new custom command that doesn't exist in PureBasic.
Kuron wrote: Fri Dec 09, 2011 12:46 pmDLL creation should be removed from the product
Um, no. DLLs are needed for some types of projects, where global access to things are required that can't be done from within the exe itself. But mainly because DLLs provide a way to easily re-use custom coded procedures in your own apps, and for other people's apps.