Lines Matching refs:app
113 char * app; in PathForResourceA() local
119 app = strrchr( folder, '\\' ); in PathForResourceA()
120 require_action( app, exit, ret = 0 ); in PathForResourceA()
121 *app++ = '\0'; in PathForResourceA()
125 if ( ( ( ext = strstr( app, ".exe" ) ) != NULL ) || ( ( ext = strstr( app, ".dll" ) ) != NULL ) ) in PathForResourceA()
130 snprintf( appPathNameA, MAX_PATH, "%s\\%s", folder, app ); in PathForResourceA()
149 wchar_t * app; in PathForResourceW() local
156 app = wcsrchr( folder, '\\' ); in PathForResourceW()
157 require_action( app, exit, ret = 0 ); in PathForResourceW()
158 *app++ = '\0'; in PathForResourceW()
162 …if ( ( ( ext = wcsstr( app, L".exe" ) ) != NULL ) || ( ( ext = wcsstr( app, L".dll" ) ) != NULL ) ) in PathForResourceW()
167 swprintf( appPathNameW, MAX_PATH, L"%ls\\%ls", folder, app ); in PathForResourceW()