⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Frédéric Blanc
All Projects
Frédéric Blanc
Overview
Activity
Issues
Documents
Wiki
Files
Repository
Download (1.08 KB)
Files
» log.c
Frédéric Blanc
, 2016-01-29 09:58
/**
* @brief sauvegarde fichier LOG
* @param aucun
* @return 0
* @date 25/02/2010
*
*/
#include
<utility.h>
#include
"var.h"
int
save_LOG
(
char
*
texte
)
{
struct
tm
tm
;
SetCtrlVal
(
T_panel
[
PANEL_LOG
].
panel
,
P_LOG_TXT
,
"
\n
"
);
SetCtrlVal
(
T_panel
[
PANEL_LOG
].
panel
,
P_LOG_TXT
,
texte
);
GetSystemDate
(
&
tm
.
tm_mon
,
&
tm
.
tm_mday
,
&
tm
.
tm_year
);
GetSystemTime
(
&
tm
.
tm_hour
,
&
tm
.
tm_min
,
&
tm
.
tm_sec
);
fprintf
(
file_LOG
,
"%d/%2.2d/%2.2d-%2.2dh%2.2dm%2.2ds
\t
"
,
tm
.
tm_year
,
tm
.
tm_mon
,
tm
.
tm_mday
,
tm
.
tm_hour
,
tm
.
tm_min
,
tm
.
tm_sec
);
fprintf
(
file_LOG
,
texte
);
fprintf
(
file_LOG
,
"
\n
"
);
fflush
(
file_LOG
);
if
(
file_LOG_mesure
!=
NULL
)
{
fprintf
(
file_LOG_mesure
,
"%d/%2.2d/%2.2d-%2.2dh%2.2dm%2.2ds
\t
"
,
tm
.
tm_year
,
tm
.
tm_mon
,
tm
.
tm_mday
,
tm
.
tm_hour
,
tm
.
tm_min
,
tm
.
tm_sec
);
fprintf
(
file_LOG_mesure
,
texte
);
fprintf
(
file_LOG_mesure
,
"
\n
"
);
fflush
(
file_LOG_mesure
);
}
return
0
;
}
/**
* @brief Test pour LOG
* @param aucun
* @return 0
* @date 25/02/2010
*
*/
int
test_LOG
(
int
test
)
{
if
(
test
)
save_LOG
(
" FAIL"
);
else
save_LOG
(
" OK"
);
return
0
;
}
« Previous
1
…
16
17
18
19
20
…
25
Next »
(18-18/25)
Loading...