kernel32.decls and comdlg32.decls

Blitz3D Forums/Blitz3D Programming/kernel32.decls and comdlg32.decls

Ross C(Posted 2007) [#1]
Anyone any idea where i can find them both? Especially the latter of the two.


big10p(Posted 2007) [#2]
Is this for the file requestor you posted in another thread, Ross?

If so, it has the info to create the decls at the top of the source code:

; in the USERLIBS must be the file kernel32.decls
;.lib "kernel32.dll"
;api_RtlMoveMemory(Destination*,Source,Length) : "RtlMoveMemory"

; in the USERLIBS must be the file comdlg32.decls
;.lib "comdlg32.dll"
;api_GetOpenFileName% (pOpenfilename*) : "GetOpenFileNameA"
;api_GetSaveFileName% (pOpenfilename*) : "GetSaveFileNameA"




Ross C(Posted 2007) [#3]
* Ross feels rather stupid now :D

What do i do about the .dll's i need?


Sledge(Posted 2007) [#4]
They are system dlls -- they'll be in your Windows dir already.