root/lang/c/AutoUpdater/Test.cpp @ 14180

Revision 14178, 348 bytes (checked in by saturday06, 5 years ago)

C++のとこから移動

Line 
1#include "AutoUpdater.h"
2
3#ifdef AU_USE_TCHAR
4#define _T(text) TEXT(text)
5#else
6#define _T(text) text
7#endif
8
9#include <stdio.h>
10#include <string.h>
11
12int main() {
13    AU_Source* source;
14    if (AU_CreateSource(&source, 200, "http://www.google.co.jp") == AU_ERROR) {
15        return 1;
16    }
17    AU_ReleaseSource(source);
18    return 0;
19}
Note: See TracBrowser for help on using the browser.