Jump to content

DosTestPSD: Difference between revisions

From EDM2
Created page with "Determine if the PSD is valid for the current platform. This function will load the specified PSD, call its Install, and DeInstall routine, and unload the PSD. It returns the..."
 
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 4: Line 4:


==Syntax==
==Syntax==
<PRE>
DosTestPSD (pszPSDFileName)


</PRE>
==Parameters==
==Parameters==
Pointer to a fully qualified PSD path and name.
;''pszPSDFileName'' ([[PCSZ]]) - input: Pointer to a fully qualified PSD path and name.


==Return Code==
==Return Code==
 
'''Exit''': Return Code.
==Errors==


==Remarks==
==Remarks==
This function will mainly be used by OS/2's install, to test the validity of a PSD that will be installed.  
This function will mainly be used by OS/2's install, to test the validity of a PSD that will be installed.
 
==Example Code==
<PRE>
 
</PRE>
 
==Related Functions==


[[Category:]]
[[Category:PSD]]

Latest revision as of 18:21, 18 May 2025

Determine if the PSD is valid for the current platform.

This function will load the specified PSD, call its Install, and DeInstall routine, and unload the PSD. It returns the return code from the PSD's Install routine, or any error code it might have received while attempting to do the above operation.

Syntax

DosTestPSD (pszPSDFileName)

Parameters

pszPSDFileName (PCSZ) - input
Pointer to a fully qualified PSD path and name.

Return Code

Exit: Return Code.

Remarks

This function will mainly be used by OS/2's install, to test the validity of a PSD that will be installed.