irb4
September 22nd, 2006, 12:28 AM
Win ce directory structure confirmed:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnppcgen/html/ppc_io.asp
So I code like this with evc++ 2002
#include <stdio.h>
FILE *fp;
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow){
fp=fopen("\Temp\agon.doc", "a");
nothing in \Temp file.....
#include <stdio.h>
FILE *fp;
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow){
fp=_wfopen(L"\Temp\agon.doc", L"a");
nothing in \Temp file.....
Anything wrong with my code?
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnppcgen/html/ppc_io.asp
So I code like this with evc++ 2002
#include <stdio.h>
FILE *fp;
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow){
fp=fopen("\Temp\agon.doc", "a");
nothing in \Temp file.....
#include <stdio.h>
FILE *fp;
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow){
fp=_wfopen(L"\Temp\agon.doc", L"a");
nothing in \Temp file.....
Anything wrong with my code?