Changeset 1239 for trunk/pysoy/include

Show
Ignore:
Timestamp:
04/18/08 21:24:16 (7 months ago)
Author:
ArcRiley
Message:

No Ticket :

  • moved all soy.*.pxd's to include/soy/*.pxd
  • moved support.pxd functions to windows.pxd (untested)
Location:
trunk/pysoy/include
Files:
1 added
1 modified
21 moved

Legend:

Unmodified
Added
Removed
  • trunk/pysoy/include/windows.pxd

    r1191 r1239  
    137137    SIZE_MINIMIZED 
    138138 
     139 
     140cdef extern from "support.c": 
     141  cdef ATOM register_class(HINSTANCE, WNDPROC) 
     142  cdef BOOL unregister_class(HINSTANCE) 
     143  cdef HWND make_window(HINSTANCE, char*, int, int, int, int, int) 
     144  cdef int set_pixel_format(HDC) 
     145  cdef BOOL set_window_pos(HWND window, int x, int y) 
     146  cdef BOOL get_window_pos(HWND window, int* x, int* y) 
     147  cdef BOOL set_window_size(HWND window, int width, int height) 
     148  cdef BOOL get_window_size(HWND window, int* width, int* height) 
     149  #cdef HDC get_display_hdc() 
     150  cdef void get_screen_info(int* width, int* height, int* depth) 
     151  cdef int minimize ( HWND window ) 
     152  cdef int maximize ( HWND window ) 
     153 
    139154# vim: sts=2:sw=2:et 
    140155