>>752 CreateFileの説明の通り In the ANSI version of this function, the name is limited to MAX_PATH characters.To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend "\\?\" to the path. For more information, see Naming a File.
>>940 そうだよ。Win16では当初ウィンドウプロシージャもこういう宣言だった。 LONG FAR PASCAL WindowProc(HWND, unsigned, WORD, LONG); Win16後期になってくると、LRESULT/UINT/WPARAM/LPARAMが出てきて、 現在のWin32でも通用する形になった。 LRESULT FAR PASCAL WindowProc(HWND, UINT, WPARAM, LPARAM);