diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-04-01 16:48:47 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-04-01 16:48:47 +0800 |
commit | 59f8d6883f61d07fb32f6cd189f30fcdc1322bb7 (patch) | |
tree | 8a126b1f909f3044aabb1789efb2a80904538808 /include | |
parent | b7bc8f550f372e3a00b82889b49dd9a25d0160cd (diff) | |
download | pttbbs-59f8d6883f61d07fb32f6cd189f30fcdc1322bb7.tar pttbbs-59f8d6883f61d07fb32f6cd189f30fcdc1322bb7.tar.gz pttbbs-59f8d6883f61d07fb32f6cd189f30fcdc1322bb7.tar.bz2 pttbbs-59f8d6883f61d07fb32f6cd189f30fcdc1322bb7.tar.lz pttbbs-59f8d6883f61d07fb32f6cd189f30fcdc1322bb7.tar.xz pttbbs-59f8d6883f61d07fb32f6cd189f30fcdc1322bb7.tar.zst pttbbs-59f8d6883f61d07fb32f6cd189f30fcdc1322bb7.zip |
- logging regform validation results to specific board (BN_ID_RECORD)
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4058 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 1 | ||||
-rw-r--r-- | include/proto.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index 0309d943..d448e96b 100644 --- a/include/common.h +++ b/include/common.h @@ -241,6 +241,7 @@ #define EDITFLAG_UPLOAD (0x00000002) #define EDITFLAG_ALLOWLARGE (0x00000004) #define EDITFLAG_ALLOWTITLE (0x00000008) +// #define EDITFLAG_ANONYMOUS (0x00000010) /* ----------------------------------------------------- */ /* Grayout Levels */ diff --git a/include/proto.h b/include/proto.h index 73734e50..d7fe1111 100644 --- a/include/proto.h +++ b/include/proto.h @@ -620,6 +620,7 @@ void syncnow(void); /* syspost */ int post_msg(const char* bname, const char* title, const char *msg, const char* author); +int post_msg_fpath(const char* bname, const char* title, const char *msg, const char* author, char *fpath); // return filename in fpath int post_file(const char *bname, const char *title, const char *filename, const char *author); void post_newboard(const char *bgroup, const char *bname, const char *bms); void post_violatelaw(const char *crime, const char *police, const char *reason, const char *result); |