[ create a new paste ] login | about

CecilSunkure

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by CecilSunkure:

C, pasted on Dec 1:
1
2
3
4
/* paletteFontSample.h */

#define WIN32_LEAN_AND_MEAN
#define _WIN32_WINNT 0x0500
...
view (78 lines)
C, pasted on Dec 1:
1
2
3
4
5
/* paletteFontSample.c */
#include "palette.h"

/******************************************************************************
  main
...
view (226 lines)
Python, pasted on May 15:
1
2
3
4
5
from django.shortcuts import render_to_response
from django.http import HttpResponse

def search_form(request):
    return render_to_response('search_form.html')
...
view (16 lines)