GetAssertionFileW
Syntax
// // Strong typing definition // const wchar_t * GetAssertionFileW( const wchar_t ** fileName ); static inline const wchar_t * GetAssertionFileW( wchar_t ** fileName ) { return GetAssertionFileW( (const wchar_t**) fileName ); } static inline const wchar_t * GetAssertionFileW( ) { return GetAssertionFileW( (const wchar_t**) nullptr // fileName ); } // // Weak typing definition // const wchar_t __declspec(dllexport) * __stdcall GetAssertionFileW( const wchar_t ** fileName ); static inline const wchar_t * GetAssertionFileW( wchar_t ** fileName ) { return GetAssertionFileW( (const wchar_t**) fileName ); } static inline const wchar_t * GetAssertionFileW( ) { return GetAssertionFileW( (const wchar_t**) nullptr // fileName ); }