[My Menaron CDLL] Where is the Build DLL Tool?

Working on new editor enhancements?
User avatar
JamieVanCadsand
User
User
Posts: 34
Joined: Sun Jun 24, 2018 12:28 pm
Location: Holland

[My Menaron CDLL] Where is the Build DLL Tool?

Post by JamieVanCadsand »

Hey Library Programmers...

Now i get write my first simple CDLL, called for per-integer units in there 1D, 2D, 3D and 4D Fields.
So this is my script, called in PB5.6.2, on windows XP:

Code: Select all

;***************************************************************************************************************************************
;* Menaron 0.00.001 *************************************************************************************************
;***************************************************************************************************************************************




;***************************************************************************************************************************************
;* Call Axises *************************************************************************************************************************
Global X.i = 0 ;First Dimension - Width
Global Y.i = 0 ;Second Dimension - Height
Global Z.i = 0 ;Thirth Dimension - Depth
Global T.i = 0 ;Fourth Dimension - Time



;***************************************************************************************************************************************
;* Call Functions **********************************************************************************************************************

;* Field1D *****************************************************************************************************************************
ProcedureCDLL mField1D(X)
  Return X
EndProcedure

;* Field2D *****************************************************************************************************************************
ProcedureCDLL mField2D(X, Y)
  Return X * Y
EndProcedure

;* Field3D *****************************************************************************************************************************
ProcedureCDLL mField3D(X, Y, Z)
  Return X * Y * Z
EndProcedure

;* Field4D *****************************************************************************************************************************
ProcedureCDLL mField4D(X, Y, Z, T)
  Return X * Y * Z * T
EndProcedure

;***************************************************************************************************************************************
;***************************************************************************************************************************************
;***************************************************************************************************************************************
So my question is just how i can export them as an dynamic link library, called in the PB5.6.2 Editor... i get search
the just tool, but i never found them...

So can anyone post pictures here, called the steps how i must be export my code as an CDLL?...,
Thanks for help, Jamie.
Last edited by JamieVanCadsand on Tue Jul 17, 2018 9:29 am, edited 1 time in total.
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Re: [My Menaron CDLL] Where is the Build DLL Tool?

Post by Trond »

Compiler options -> executable format -> dll.
Fred
Administrator
Administrator
Posts: 16581
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: [My Menaron CDLL] Where is the Build DLL Tool?

Post by Fred »

Post Reply