Click here to Skip to main content
15,896,557 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
hi i know , i explain again and its been close....
i only need header of setupdeleteerror() method from user32.dll (which parameter it get).
[DllImport("user32.dll")] public static extern SetupDeleteError(?,?,?,?) 


its still vague..?
Posted
Comments
[no name] 18-Apr-13 11:44am    
Afraid so. Still vague. http://msdn.microsoft.com/en-us/library/aa376994%28v=vs.85%29.aspx
mohssenvox 18-Apr-13 11:57am    
o.O
Tnx its usefull...
Goodluck

1 solution

UINT SetupDeleteError(
__in HWND hwndParent,
__in PCTSTR DialogTitle,
__in PCTSTR File,
__out UINT Win32ErrorCode,
__in DWORD Style
);

Parameters

hwndParent [in]
Handle to the parent window for this dialog box.

DialogTitle [in]
Optional pointer to a null-terminated string specifying the error dialog box title. If this parameter is NULL, the default title of "Delete Error" (localized) is used.

File [in]
Pointer to a null-terminated string specifying the full path of the file on which the delete operation failed.

Win32ErrorCode [out]
The system error code encountered during the file operation.

Style [in]
Flags that control display formatting and behavior of the dialog box. This parameter can be one of the following flags.

IDF_NOBEEP

Prevent the dialog box from beeping to get the user's attention when it first appears.
IDF_NOFOREGROUND

Prevent the dialog box from becoming the foreground window.



from MSDN
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900