SetAssertionFile

This function sets the file location where internal assertions should be written to. If the file name is not set (default) many internal control procedures are not executed and the code will be faster.

Syntax

//
//   Strong typing definition
//
void            SetAssertionFile(
                        const char              * fileName
                    );

static  inline  void    SetAssertionFile(
                                char                    * fileName
                            )
{
    return  SetAssertionFile(
                    (const char*) fileName
                );
}


//
//   Weak typing definition
//
void    __declspec(dllexport) __stdcall SetAssertionFile(
                                                const char              * fileName
                                            );

static  inline  void    SetAssertionFile(
                                char                    * fileName
                            )
{
    return  SetAssertionFile(
                    (const char*) fileName
                );
}
    

Property fileName

Size: 32 bit / 4 byte (reference)
The file name of the file as available in the file system in ASCII (char *). The given char array will not be adjusted, on each OS the size of a char element is 8 bit / 1 byte.