Hey, im making a DLL and i need some help. I need it to return the text in yellow. So what do I add to the following to do so. Here's what i have.

Code:
#include "dll.h"
#include <windows.h>
#include <iostream.h>

int main()
{

HANDLE hOut;

hOut = GetStdHandle(STD_OUTPUT_HANDLE);

SetConsoleTextAttribute(hOut,
                            FOREGROUND_RED | 
                            FOREGROUND_GREEN); }
                            
export double text(double string1, double string2)
  
{
       return (double) string1;
}
Also is it possible and if so, what steps do you take in searching a string for certain characters and words.

- Thanx