You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
392 B
13 lines
392 B
#ifndef MIXCTNT_H
|
|
#define MIXCTNT_H
|
|
|
|
BOOL _AddAutoplayPrompt(PCWSTR pszDriveOrDeviceID);
|
|
void _RemoveFromAutoplayPromptHDPA(LPCWSTR pszAltDeviceID);
|
|
|
|
void _SetAutoplayPromptHWND(LPCWSTR pszAltDeviceID, HWND hwnd);
|
|
BOOL _GetAutoplayPromptHWND(LPCWSTR pszAltDeviceID, HWND* phwnd);
|
|
|
|
EXTERN_C CRITICAL_SECTION g_csAutoplayPrompt;
|
|
extern HDPA g_hdpaAutoplayPrompt;
|
|
|
|
#endif //MIXCTNT_H
|