Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
318529d8
Commit
318529d8
authored
Oct 24, 2015
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
b4c5f6ca
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
519 additions
and
493 deletions
+519
-493
Log.h
Log.h
+422
-404
MyWSAError.h
MyWSAError.h
+81
-78
global.h
global.h
+13
-10
observer_macro.h
observer_macro.h
+3
-1
No files found.
Log.h
View file @
318529d8
This diff is collapsed.
Click to expand it.
MyWSAError.h
View file @
318529d8
#pragma once
#pragma once
namespace
jlib
inline
wchar_t
*
FormatWSAError
(
int
errornumber
)
{
{
inline
wchar_t
*
FormatWSAError
(
int
errornumber
)
{
switch
(
errornumber
)
{
switch
(
errornumber
)
{
case
WSANOTINITIALISED
:
case
WSANOTINITIALISED
:
return
L"A successful WSAStartup call must occur before using this function. "
;
return
L"A successful WSAStartup call must occur before using this function. "
;
...
@@ -78,4 +79,6 @@ inline wchar_t* FormatWSAError(int errornumber)
...
@@ -78,4 +79,6 @@ inline wchar_t* FormatWSAError(int errornumber)
return
buf
;
return
buf
;
}
break
;
}
break
;
}
}
}
}
\ No newline at end of file
};
global.h
View file @
318529d8
...
@@ -6,26 +6,27 @@
...
@@ -6,26 +6,27 @@
#include "mtverify.h"
#include "mtverify.h"
#include "FileOper.h"
#include "FileOper.h"
#include "Log.h"
#include "Log.h"
#define LOG CLog::WriteLog
#include "MyWSAError.h"
#define LOGA CLog::WriteLogA
#include "observer_macro.h"
#define LOGW CLog::WriteLogW
#define LOGB(b, l) CLog::Dump(b, l)
namespace
jlib
{
#define LOGASC(b, l) CLog::DumpAsc(b, l)
#define JLOG CLog::WriteLog
#define JLOGA CLog::WriteLogA
#define JLOGW CLog::WriteLogW
#define JLOGB(b, l) CLog::Dump(b, l)
#define JLOGASC(b, l) CLog::DumpAsc(b, l)
class
LogFunction
{
class
LogFunction
{
private
:
private
:
const
char
*
_func_name
;
const
char
*
_func_name
;
public
:
public
:
LogFunction
(
const
char
*
func_name
)
:
_func_name
(
func_name
)
{
LOGA
(
"%s in
\n
"
,
_func_name
);
}
LogFunction
(
const
char
*
func_name
)
:
_func_name
(
func_name
)
{
J
LOGA
(
"%s in
\n
"
,
_func_name
);
}
~
LogFunction
()
{
LOGA
(
"%s out
\n
"
,
_func_name
);
}
~
LogFunction
()
{
J
LOGA
(
"%s out
\n
"
,
_func_name
);
}
};
};
#define LOG_FUNCTION(func_name) LogFunction _log_function_object(func_name);
#define LOG_FUNCTION(func_name) LogFunction _log_function_object(func_name);
#define AUTO_LOG_FUNCTION LOG_FUNCTION(__FUNCTION__)
#define AUTO_LOG_FUNCTION LOG_FUNCTION(__FUNCTION__)
#include "MyWSAError.h"
#include "observer_macro.h"
#define NAMESPACE_END };
#define NAMESPACE_END };
#define DECLARE_UNCOPYABLE(classname) \
#define DECLARE_UNCOPYABLE(classname) \
...
@@ -105,3 +106,5 @@ public: \
...
@@ -105,3 +106,5 @@ public: \
#define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; }
#define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; }
};
observer_macro.h
View file @
318529d8
#pragma once
namespace
jlib
{
// place this macro in your class's header file, in your class's definition
// place this macro in your class's header file, in your class's definition
#define DECLARE_OBSERVER(callback, param_type) \
#define DECLARE_OBSERVER(callback, param_type) \
protected
:
\
protected
:
\
...
@@ -70,7 +72,7 @@ void class_name::NotifyObservers(_param_type param) \
...
@@ -70,7 +72,7 @@ void class_name::NotifyObservers(_param_type param) \
_observerList
.
clear
();
\
_observerList
.
clear
();
\
}
}
};
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment