This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define WIN32_ULTRA_LEAN | |
#define UNICODE | |
#include <Windows.h> | |
#include <cstdio> | |
#include <cstdlib> | |
int TestSetCurrentDirectory( const wchar_t* directory ) | |
{ | |
if( !SetCurrentDirectory( directory ) ) | |
{ |