I'm trying to update one of my userlib with PB 6.10.
Creating the lib and res file doesn't seem to be a problem for PB, but when I try to compile code that uses this lib's instruction set, at compile time, this message appears:

I have no specific compilation parameter for the lib, only "/UNICODE" (and "/COMMENTED" for this thread).
I've looked through the generated ASM file and don't see these two function 'calls' (I don't really know how to name them).
Below, the header of the ASM file of the lib.
;
; PureBasic 6.10 LTS (Windows - x64) generated code
;
; (c) 2024 Fantaisie Software
;
; The header must remain intact for Re-Assembly
;
; String
; Math
; FileSystem
; File
; Object
; SimpleList
; Date
; Array
; Memory
; :System
; kernel32.lib
; :Import
;
format MS64 COFF
;
;
extrn PB_AllocateMemory
extrn PB_Asc
extrn PB_CheckFilename
extrn PB_Chr
extrn PB_ClearStructure
extrn PB_CloseFile
extrn PB_Eof
extrn PB_FileSeek
extrn PB_FileSize
extrn PB_FormatDate
extrn PB_FreeFiles
extrn PB_FreeFileSystem
extrn PB_FreeMemory
extrn PB_FreeMemorys
extrn PB_FreeObjects
extrn PB_Hex
extrn PB_InitArray
extrn PB_InitFile
extrn PB_InitMemory
extrn PB_Int
extrn PB_IsFile
extrn PB_Left
extrn PB_Len
extrn PB_Loc
extrn PB_Lof
extrn PB_LSet2
extrn PB_Mid2
extrn PB_OpenFile2
extrn PB_ParseDate
extrn PB_PeekB
extrn PB_PeekL
extrn PB_PeekS3
extrn PB_PeekW
extrn PB_Pow
extrn PB_ReadByte
extrn PB_ReadData
extrn PB_ReadFile2
extrn PB_ReadLong
extrn PB_ReadWord
extrn PB_ReAllocateMemory
extrn PB_Right
extrn PB_Round
extrn PB_RSet2
extrn PB_Sqr
extrn PB_Str
extrn PB_StrF
extrn PB_StrF2
extrn PB_Trim
extrn PB_UCase
extrn PB_Val
extrn PB_WriteString2
extrn ExitProcess
extrn GetModuleHandleW
extrn HeapCreate
extrn HeapDestroy
extrn memset
extrn SYS_CopyString
extrn SYS_FreeStructureStrings
extrn SYS_FreeArray
extrn SYS_StringEqual
extrn SYS_AllocateString4
extrn SYS_FastAllocateString4
extrn SYS_FastAllocateStringFree4
extrn SYS_FreeString
extrn SYS_AllocateArray
extrn PB_StringBase
extrn SYS_InitString
extrn SYS_FreeStrings
;
extrn PB_StringBasePosition
extrn SYS_InitPureBasic
public _PB_Instance
public PB_ExecutableType
public PB_OpenGLSubsystem
public _PB_MemoryBase
public PB_Instance
public PB_MemoryBase
public PB_EndFunctions
macro pb_public symbol
{
public _#symbol
public symbol
_#symbol:
symbol:
}
macro pb_align value { rb (value-1) - ($-_PB_DataSection + value-1) mod value }
macro pb_bssalign value { rb (value-1) - ($-_PB_BSSSection + value-1) mod value }
;
public WinMain
;
section '.code' code readable executable align 4096
;
;
Could someone tell me why this is happening?
(I know there were major changes with version 6.10 on Windows, but I don't master the subject sufficiently)
Thanks.



