MCPcopy Create free account
hub / github.com/DentonW/DevIL / GenFilterString

Function GenFilterString

DevIL/examples/windows_example/WindowsTest.cpp:1077–1090  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1075
1076
1077void GenFilterString(TCHAR *Out, TCHAR **Strings)
1078{
1079 int OutPos = 0, StringPos = 0;
1080
1081 while (Strings[StringPos][0] != 0) {
1082 wsprintf(Out + OutPos, Strings[StringPos]);
1083 OutPos += (int)wcslen(Strings[StringPos++]) + 1;
1084 }
1085
1086 Out[OutPos++] = 0;
1087 Out[OutPos] = 0;
1088
1089 return;
1090}
1091
1092
1093INT_PTR APIENTRY AboutDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)

Callers 1

WndProcFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected